forked from ddrilling/AsbCloudServer
13 lines
334 B
C#
13 lines
334 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
public class SetpointInfoDto
|
|
{
|
|
public string DisplayName { get; set; }
|
|
public string Name { get; set; }
|
|
public string Units { get; set; }
|
|
public string Comment { get; set; }
|
|
public double Max { get; set; }
|
|
public double Min { get; set; }
|
|
}
|
|
}
|