18 lines
464 B
C#
18 lines
464 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; } = "";
|
|
public string ImageUrl { get; set; } = "";
|
|
}
|
|
}
|