15 lines
289 B
C#
15 lines
289 B
C#
namespace Common.UI.ViewModels
|
|
{
|
|
public class MeterSizeVM
|
|
{
|
|
public string Title { get; set; }
|
|
|
|
public byte Size { get; set; }
|
|
|
|
public bool UseCandIRules { get; set; }
|
|
|
|
public int Vpp { get; set; }
|
|
|
|
public uint VppLED { get; set; }
|
|
}
|
|
} |