diff --git a/Egw.Window.Data/Egw.Window.Data.csproj b/Egw.Window.Data/Egw.Window.Data.csproj index 16a0ad0..53a82ac 100644 --- a/Egw.Window.Data/Egw.Window.Data.csproj +++ b/Egw.Window.Data/Egw.Window.Data.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 2.7.10.212 + 2.7.10.218 Annamaria Sassi Egalware Classi di base per gestione sistemi Window x Egw.* diff --git a/Egw.Window.Data/Hardware.cs b/Egw.Window.Data/Hardware.cs index fda093b..182de3b 100644 --- a/Egw.Window.Data/Hardware.cs +++ b/Egw.Window.Data/Hardware.cs @@ -2,6 +2,14 @@ { public class Hardware { + public string Id { get; set; } + public string FamilyName { get; set; } + public string Description { get; set; } + public string OpeningType { get; set; } + public string Shape { get; set; } + public int SashQty { get; set; } + public int SashPosition { get; set; } +#if false private string m_Id; public string Id { @@ -63,17 +71,18 @@ { return m_SashPosition; } - } + } +#endif public Hardware(string Id, string FamilyName, string Description, string OpeningType, string Shape, int SashQty, int SashPosition) { - m_Id = Id; - m_FamilyName = FamilyName; - m_Description = Description; - m_OpeningType = OpeningType; - m_Shape = Shape; - m_SashQty = SashQty; - m_SashPosition = SashPosition; + this.Id = Id; + this.FamilyName = FamilyName; + this.Description = Description; + this.OpeningType = OpeningType; + this.Shape = Shape; + this.SashQty = SashQty; + this.SashPosition = SashPosition; } } }