diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO/TangoUpdateDTOBase.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/DTO/TangoUpdateDTOBase.cs | 97 |
1 files changed, 0 insertions, 97 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/TangoUpdateDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/TangoUpdateDTOBase.cs deleted file mode 100644 index 8e87df812..000000000 --- a/Software/Visual_Studio/Tango.BL/DTO/TangoUpdateDTOBase.cs +++ /dev/null @@ -1,97 +0,0 @@ - -//------------------------------------------------------------------------------ -// <auto-generated> -// This code was generated by a tool. -// Tango Observables Generator -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. Do not modify! -// </auto-generated> -//------------------------------------------------------------------------------ - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Tango.BL.Entities; - -namespace Tango.BL.DTO -{ - public abstract class TangoUpdateDTOBase : ObservableEntityDTO<TangoUpdateDTO, TangoUpdate> - { - - /// <summary> - /// application version - /// </summary> - public String ApplicationVersion - { - get; set; - } - - /// <summary> - /// firmware version - /// </summary> - public String FirmwareVersion - { - get; set; - } - - /// <summary> - /// machine guid - /// </summary> - public String MachineGuid - { - get; set; - } - - /// <summary> - /// status - /// </summary> - public Int32 Status - { - get; set; - } - - /// <summary> - /// failed reason - /// </summary> - public String FailedReason - { - get; set; - } - - /// <summary> - /// failed log - /// </summary> - public String FailedLog - { - get; set; - } - - /// <summary> - /// start date - /// </summary> - public DateTime StartDate - { - get; set; - } - - /// <summary> - /// end date - /// </summary> - public Nullable<DateTime> EndDate - { - get; set; - } - - /// <summary> - /// is synchronized - /// </summary> - public Boolean IsSynchronized - { - get; set; - } - - } -} |
