Aggiornati campi di Threshold

This commit is contained in:
Annamaria Sassi
2025-12-22 10:47:28 +01:00
parent fc9d7f3020
commit d04bb3b562
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>2.7.12.1917</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>
+4 -4
View File
@@ -3,13 +3,13 @@ namespace Egw.Window.Data
{
public class Threshold
{
public int nType { get; set; }
public string sName { get; set; }
public int Type { get; set; }
public string Name { get; set; }
public Threshold(int nType, string sName)
{
this.nType = nType;
this.sName = sName;
this.Type = nType;
this.Name = sName;
}
}
}