namespace Xylem.Common.Logic.ProductionOrderCore { public enum ProgrammingSource { Vako, Csd, } public class ProgrammingParameters { public ProgrammingParameters(string registerName, byte[] registerValue, ProgrammingSource programmingSource = ProgrammingSource.Vako) { RegisterName = registerName; RegisterValue = registerValue; Source = programmingSource; } public string RegisterName { get; set; } public byte[] RegisterValue { get; set; } public ProgrammingSource Source { get; set; } } }