23 lines
465 B
C#
23 lines
465 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HTOLHAST
|
|
{
|
|
public class HeaderSetting
|
|
{
|
|
public string HeaderPin { get; set; }
|
|
public int Channel { get; set; }
|
|
public string Description { get; set; }
|
|
public double Setpoint { get; set; }
|
|
public double Tolerance { get; set; }
|
|
|
|
public HeaderSetting()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|