24 lines
625 B
C#
24 lines
625 B
C#
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; }
|
|
|
|
}
|
|
}
|