Files
webwindowconfigurator/WebWindowConfigurator/DTO/TemplateSelectorDTO.cs
T
Annamaria Sassi 357b694581 - aggiunta visualizzazione svg in tabella template
- gestione oggetti sottostanti il template selezionato per interfaccia
2025-07-17 15:10:46 +02:00

17 lines
413 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebWindowConfigurator.DTO
{
public class TemplateSelectDTO
{
public int Index { get; set; } = 0;
public string Description { get; set; } = "";
public string JwdFileName { get; set; } = "";
public string SVGFileName { get; set; } = "";
}
}