using System; namespace Xylem.Common.Logic.ProductionOrderCore.Csd { /// /// Container for customer specific document - CSD which represents /// the customer requirements for the final setup of the Cordonel. /// public class CsdParameterResult { /// /// Level /// public Int32 Lvl { get; set; } /// /// Setting is valid /// public Boolean IsValid { get; set; } /// /// CSD source identifier /// public Int32 SourceCsdId { get; set; } /// /// CSD product identifier /// public Int32 SourceProductId { get; set; } /// /// CSD source group identifier /// public Int32 SourceGroupId { get; set; } /// /// CSD entry identifier for a specific setting /// public Int32 Id { get; set; } /// /// CSD entry name /// public String Name { get; set; } /// /// CSD value as text /// public String ValueText { get; set; } /// /// CSD value /// public Byte[] Value { get; set; } } }