Files
webwindowconfigurator/WebWindowComplex/DTO/TemplateSelectorDTO.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

18 lines
459 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebWindowComplex.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; } = "";
public string ImageUrl { get; set; } = "";
}
}