//------------------------------------------------------------------------------ // // 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! // //------------------------------------------------------------------------------ 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 JobDTOBase : ObservableEntityDTO { /// /// creation date /// public DateTime CreationDate { get; set; } /// /// last run /// public Nullable LastRun { get; set; } /// /// machine guid /// public String MachineGuid { get; set; } /// /// user guid /// public String UserGuid { get; set; } /// /// rml guid /// public String RmlGuid { get; set; } /// /// winding method guid /// public String WindingMethodGuid { get; set; } /// /// spool type guid /// public String SpoolTypeGuid { get; set; } /// /// name /// public String Name { get; set; } /// /// description /// public String Description { get; set; } /// /// inter segment length /// public Double InterSegmentLength { get; set; } /// /// enable inter segment /// public Boolean EnableInterSegment { get; set; } /// /// enable lubrication /// public Boolean EnableLubrication { get; set; } /// /// job index /// public Int32 JobIndex { get; set; } /// /// estimated duration mili /// public Int32 EstimatedDurationMili { get; set; } /// /// has embroidery file /// public Boolean HasEmbroideryFile { get; set; } /// /// embroidery file data /// public Byte[] EmbroideryFileData { get; set; } /// /// embroidery file name /// public String EmbroideryFileName { get; set; } /// /// embroidery jpeg /// public Byte[] EmbroideryJpeg { get; set; } /// /// status /// public Int32 Status { get; set; } /// /// color space guid /// public String ColorSpaceGuid { get; set; } /// /// color catalog guid /// public String ColorCatalogGuid { get; set; } /// /// number of units /// public Int32 NumberOfUnits { get; set; } /// /// type /// public Int32 Type { get; set; } /// /// customer guid /// public String CustomerGuid { get; set; } /// /// spools distribution /// public Int32 SpoolsDistribution { get; set; } /// /// number of heads /// public Int32 NumberOfHeads { get; set; } /// /// sample units or meters /// public Int32 SampleUnitsOrMeters { get; set; } /// /// fine tuning status /// public Int32 FineTuningStatus { get; set; } /// /// fine tuning approve date /// public Nullable FineTuningApproveDate { get; set; } /// /// sample dye status /// public Int32 SampleDyeStatus { get; set; } /// /// sample dye approve date /// public Nullable SampleDyeApproveDate { get; set; } /// /// editing state /// public Int32 EditingState { get; set; } /// /// length percentage factor /// public Double LengthPercentageFactor { get; set; } /// /// is synchronized /// public Boolean IsSynchronized { get; set; } /// /// source /// public Int32 Source { get; set; } /// /// version /// public Int32 Version { get; set; } /// /// number of spools /// public Int32 NumberOfSpools { get; set; } } }