using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TProduct.ProcessDrawing.Entities { public class ThumbEntity { public string Icon { get; set; } public string Header { get; set; } public string TargetType { get; set; } public int Width { get; set; } public int Height { get; set; } public string Category { get; set; } } }