tbf/GenesisCordonelInterface/UI/Grid/MeterRowDto.cs

15 lines
501 B
C#

namespace GenesisCordonelInterface.UI.Grid
{
public class MeterRowDto
{
public int Slot { get; set; }
public bool Selected { get; set; }
public string PcbId { get; set; }
public bool IsConnected { get; set; }
public bool IsLoggedOn { get; set; }
public string RequestPort { get; set; }
public string StreamingPort { get; set; }
public string FwVersion { get; set; }
public string InterfaceVersion { get; set; }
}
}