using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebWindowConfigurator { public class SplitParent { private Json.WindowConst.AreaTypes m_Type; public Json.WindowConst.AreaTypes Type { get { return m_Type; } set { m_Type = value; } } private string m_Description; public string Description { get { return m_Description; } set { m_Description = value; } } /// /// Proprietà per sapere se sono in un'anta /// private bool m_IntoSash; public bool IntoSash { get { return m_IntoSash; } set { m_IntoSash = value; } } private Area m_Split; public Area Split { get { return m_Split; } set { m_Split = value; } } private Area m_Splitted; public Area Splitted { get { return m_Splitted; } set { m_Splitted = value; } } public SplitParent(Json.WindowConst.AreaTypes vType,string sDescrip, bool b_IntoSash, Area v_Split, Area v_Splitted) { Type = vType; Description = sDescrip; IntoSash = b_IntoSash; Split = v_Split; Splitted = v_Splitted; } } }