ningshuxia
16 小时以前 71c12ff40d58c3dbdde6867396dd99224e57fc32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using DevExpress.Utils.Svg;
 
namespace HStation.WinFrmUI
{
    /// <summary>
    /// 
    /// </summary>
    public class XhsProjectHomeTitleViewModel
    {
        /// <summary>
        /// Id
        /// </summary>
        public string Id { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 数量
        /// </summary>
        public int Count { get; set; }
 
        /// <summary>
        /// 图片
        /// </summary>
        public SvgImage Image { get; set; }
 
 
 
    }
}