Files
2025-12-22 10:47:28 +01:00

16 lines
285 B
C#

namespace Egw.Window.Data
{
public class Threshold
{
public int Type { get; set; }
public string Name { get; set; }
public Threshold(int nType, string sName)
{
this.Type = nType;
this.Name = sName;
}
}
}