using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebWindowJWD.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; } = ""; } }