14 lines
455 B
C#
14 lines
455 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 IsLoggedOn { get; set; }
|
|
public string RequestPort { get; set; }
|
|
public string StreamingPort { get; set; }
|
|
public string FwVersion { get; set; }
|
|
public string InterfaceVersion { get; set; }
|
|
}
|
|
} |