Merge branch 'release/AggiuntaClasseThreshoold'
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
<Version>2.7.10.915</Version>
|
||||
<Version>2.7.12.2210</Version>
|
||||
<Authors>Annamaria Sassi</Authors>
|
||||
<Company>Egalware</Company>
|
||||
<Description>Classi di base per gestione sistemi Window x Egw.*</Description>
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user