Files
webwindowconfigurator/WebWindowComplex/Template.cs
T
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

49 lines
929 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebWindowComplex
{
public class Template
{
private int m_nIndex;
public int nIndex
{
get
{
return m_nIndex;
}
}
public string sDescription { get; set; } = "";
private string m_JWD;
public string JWD
{
get
{
return m_JWD;
}
}
private string m_SVG;
public string SVG
{
get
{
return m_SVG;
}
}
public Template(int nIndex, string sDescription, string SVG, string JWD)
{
m_nIndex = nIndex;
this.sDescription = sDescription;
m_SVG = SVG;
m_JWD = JWD;
}
}
}