//------------------------------------------------------------------------------ // // 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 RmlsExtensionDTOBase : ObservableEntityDTO { /// /// rmls guid /// public String RmlsGuid { get; set; } /// /// users guid /// public String UsersGuid { get; set; } /// /// created /// public DateTime Created { get; set; } /// /// yarn brand guid /// public String YarnBrandGuid { get; set; } /// /// country /// public String Country { get; set; } /// /// yarn application guid /// public String YarnApplicationGuid { get; set; } /// /// yarn industrysector guid /// public String YarnIndustrysectorGuid { get; set; } /// /// yarn type guid /// public String YarnTypeGuid { get; set; } /// /// yarn family guid /// public String YarnFamilyGuid { get; set; } /// /// yarn sub family guid /// public String YarnSubFamilyGuid { get; set; } /// /// yarn group guid /// public String YarnGroupGuid { get; set; } /// /// yarn texturing guid /// public String YarnTexturingGuid { get; set; } /// /// yarn white shade guid /// public String YarnWhiteShadeGuid { get; set; } /// /// yarn gloss level guid /// public String YarnGlossLevelGuid { get; set; } /// /// linerar density /// public Int32 LinerarDensity { get; set; } /// /// twist tpm /// public Int32 TwistTpm { get; set; } /// /// twist direction /// public Nullable TwistDirection { get; set; } /// /// min elongation /// public Nullable MinElongation { get; set; } /// /// max elongation /// public Nullable MaxElongation { get; set; } /// /// min max force n /// public Nullable MinMaxForceN { get; set; } /// /// max max force n /// public Nullable MaxMaxForceN { get; set; } /// /// min elasticity /// public Nullable MinElasticity { get; set; } /// /// max elasticity /// public Nullable MaxElasticity { get; set; } /// /// min tenacity /// public Nullable MinTenacity { get; set; } /// /// max tenacity /// public Nullable MaxTenacity { get; set; } /// /// finishing /// public String Finishing { get; set; } /// /// status /// public Int32 Status { get; set; } /// /// rml level /// public Int32 RmlLevel { get; set; } } }