aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/DTO/HardwareMotorDTO.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO/HardwareMotorDTO.cs')
-rw-r--r--Software/Visual_Studio/Tango.BL/DTO/HardwareMotorDTO.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/HardwareMotorDTO.cs b/Software/Visual_Studio/Tango.BL/DTO/HardwareMotorDTO.cs
index eb84f168b..41d53bf2a 100644
--- a/Software/Visual_Studio/Tango.BL/DTO/HardwareMotorDTO.cs
+++ b/Software/Visual_Studio/Tango.BL/DTO/HardwareMotorDTO.cs
@@ -4,22 +4,11 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
-using Tango.BL.ActionLogs;
-using Tango.BL.Entities;
namespace Tango.BL.DTO
{
public class HardwareMotorDTO : HardwareMotorDTOBase
{
- [ObservableDTOProperty(MapsTo = nameof(HardwareMotor.HardwareMotorType) + "." + nameof(HardwareMotor.HardwareMotorType.Description))]
- public String HardwareMotorTypeDescription { get; set; }
- [ActionLogIgnore]
- public HardwareMotorTypeDTO HardwareMotorType { get; set; }
-
- protected override string OnGetActionLogName()
- {
- return $"Motor '{HardwareMotorTypeDescription}'";
- }
}
}