Wrapper_API_SequentMicrosys.../RTD8TM/RTD8TMDataModel.cs

24 lines
558 B
C#

namespace Wrapper_Api_SequentMicrosystems.RTD8TM
{
public class RTD8TMDataModel
{
public float Resistance { get; set; }
public string Name { get; set; }
public byte ID { get; set; }
public byte Stack { get; set; }
public string DeviceAddress { get; set; }
public RTD8TMDataModel(float r, string name, byte id, byte stack, string da)
{
Resistance = r;
Name = name;
ID = id;
Stack = stack;
DeviceAddress = da;
}
}
}