Files
webwindowconfigurator/WebWindowConfigurator/Template.cs
T
Annamaria Sassi 173d605593 modificati nomi
2025-07-16 11:30:53 +02:00

39 lines
762 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebWindowConfigurator
{
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;
}
}
public Template(int nIndex, string sDescription, string JWDTemplate)
{
m_nIndex = nIndex;
this.sDescription = sDescription;
m_JWD = JWDTemplate;
}
}
}