Files
Annamaria Sassi 57129559af - aggiunto componente WebWindowComplex per trasformazione albero in tabella
- aggiunto WebTest per configuratore finestra complesso
2025-09-04 15:08:41 +02:00

89 lines
1.8 KiB
C#

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;
}
}
/// <summary>
/// Proprietà per sapere se sono in un'anta
/// </summary>
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;
}
}
}