Cambiato nome Material in Wood

This commit is contained in:
Annamaria Sassi
2026-03-30 12:24:58 +02:00
parent c7a8fa9e99
commit 57160cd18c
23 changed files with 82 additions and 73 deletions
+5 -5
View File
@@ -50,15 +50,15 @@ namespace WebWindowComplex.Models
}
}
public string sMaterial
public string sWood
{
get
{
return m_sMaterial;
return m_sWood;
}
set
{
m_sMaterial = value;
m_sWood = value;
}
}
@@ -115,7 +115,7 @@ namespace WebWindowComplex.Models
/// <returns></returns>
internal JsonWindow Serialize(bool hideHw = false)
{
JsonWindow JsonWindow = new JsonWindow(sProfilePath, sMaterial, sColorMaterial, sGlass);
JsonWindow JsonWindow = new JsonWindow(sProfilePath, sWood, sColorMaterial, sGlass);
foreach (var Area in AreaList)
JsonWindow.AreaList.Add(Area.Serialize(hideHw));
return JsonWindow;
@@ -133,7 +133,7 @@ namespace WebWindowComplex.Models
private List<Frame> m_AreaList = new List<Frame>();
private string? m_sColorMaterial;
private string? m_sGlass;
private string? m_sMaterial;
private string? m_sWood;
private string? m_sProfilePath;
#endregion Private Fields