357b694581
- gestione oggetti sottostanti il template selezionato per interfaccia
49 lines
934 B
C#
49 lines
934 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;
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|