Merge branch 'release/AggiuntaClasseThreshoold'

This commit is contained in:
Samuele Locatelli
2025-12-23 12:04:00 +01:00
2 changed files with 16 additions and 1 deletions
+1 -1
View File
@@ -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>
+15
View File
@@ -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;
}
}
}