16 lines
285 B
C#
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;
|
|
}
|
|
}
|
|
}
|