using DevExpress.Utils.Svg; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HStation.WinFrmUI { /// /// /// public class XhsProjectHomeTitleViewModel { /// /// Id /// public string Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 数量 /// public int Count { get; set; } /// /// 图片 /// public SvgImage Image { get; set; } } }