//------------------------------------------------------------------------------ // // 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 RmlDTOBase : ObservableEntityDTO { /// /// name /// public String Name { get; set; } /// /// display name /// public String DisplayName { get; set; } /// /// manufacturer /// public String Manufacturer { get; set; } /// /// code /// public Int32 Code { get; set; } /// /// white point l /// public Double WhitePointL { get; set; } /// /// white point a /// public Double WhitePointA { get; set; } /// /// white point b /// public Double WhitePointB { get; set; } /// /// media material guid /// public String MediaMaterialGuid { get; set; } /// /// media purpose guid /// public String MediaPurposeGuid { get; set; } /// /// media condition guid /// public String MediaConditionGuid { get; set; } /// /// linear mass density unit guid /// public String LinearMassDensityUnitGuid { get; set; } /// /// fiber shape guid /// public String FiberShapeGuid { get; set; } /// /// fiber synth guid /// public String FiberSynthGuid { get; set; } /// /// fiber size /// public Double FiberSize { get; set; } /// /// number of fibers /// public Int32 NumberOfFibers { get; set; } /// /// plies per fiber /// public Int32 PliesPerFiber { get; set; } /// /// plies per thread /// public Int32 PliesPerThread { get; set; } /// /// twisted /// public Boolean Twisted { get; set; } /// /// air entanglement /// public Boolean AirEntanglement { get; set; } /// /// lubricant /// public Boolean Lubricant { get; set; } /// /// tensile strength /// public Double TensileStrength { get; set; } /// /// elongation at break percentage /// public Double ElongationAtBreakPercentage { get; set; } /// /// estimated thread diameter /// public Double EstimatedThreadDiameter { get; set; } /// /// rank /// public Int32 Rank { get; set; } /// /// thumbnail /// public Byte[] Thumbnail { get; set; } /// /// cct guid /// public String CctGuid { get; set; } /// /// gbd guid /// public String GbdGuid { get; set; } /// /// lub guid /// public String LubGuid { get; set; } /// /// color conversion version /// public Int32 ColorConversionVersion { get; set; } /// /// use color lib gradients /// public Boolean UseColorLibGradients { get; set; } /// /// use light inks /// public Boolean UseLightInks { get; set; } /// /// use lubricant transform /// public Boolean UseLubricantTransform { get; set; } /// /// head type /// public Int32 HeadType { get; set; } /// /// qualification level /// public Int32 QualificationLevel { get; set; } /// /// qualification date /// public Nullable QualificationDate { get; set; } /// /// spools calibrations string /// public String SpoolsCalibrationsString { get; set; } /// /// feeder p /// public Int32 FeederP { get; set; } /// /// feeder i /// public Int32 FeederI { get; set; } /// /// feeder d /// public Int32 FeederD { get; set; } /// /// puller p /// public Int32 PullerP { get; set; } /// /// puller i /// public Int32 PullerI { get; set; } /// /// puller d /// public Int32 PullerD { get; set; } /// /// winder p /// public Int32 WinderP { get; set; } /// /// winder i /// public Int32 WinderI { get; set; } /// /// winder d /// public Int32 WinderD { get; set; } /// /// bypass rockers /// public Boolean BypassRockers { get; set; } /// /// cleaner flow /// public Int32 CleanerFlow { get; set; } /// /// arc head cleaning motor speed /// public Double ArcHeadCleaningMotorSpeed { get; set; } /// /// v max /// public Double VMax { get; set; } /// /// btsr application type guid /// public String BtsrApplicationTypeGuid { get; set; } /// /// btsr yarn type guid /// public String BtsrYarnTypeGuid { get; set; } /// /// btsr tension error /// public Double BtsrTensionError { get; set; } /// /// default liquid factor /// public Double DefaultLiquidFactor { get; set; } /// /// machine type /// public Nullable MachineType { get; set; } /// /// created by user guid /// public String CreatedByUserGuid { get; set; } /// /// created by organization guid /// public String CreatedByOrganizationGuid { get; set; } } }