lixiaojun
2024-12-20 357693611c60d93fb17189273d4c91dab364f0d4
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
34
35
36
37
38
39
40
41
42
43
44
using DevExpress.Utils.Svg;
 
namespace HStation.WinFrmUI
{
    /// <summary>
    ///  
    /// </summary>
    public class CreateXhsSchemeChangeRecordViewModel
    {
 
        public CreateXhsSchemeChangeRecordViewModel() { }
        public CreateXhsSchemeChangeRecordViewModel(string catalog,string code,string name, SvgImage svg) 
        {
            this.Catalog= catalog;
            this.Code= code;
            this.Name= name;
            this.SvgImage= svg;
        }
 
        /// <summary>
        /// 分类
        /// </summary>
        public string Catalog { get; set; }
 
        /// <summary>
        /// 编码
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
         
        /// <summary>
        /// 图片
        /// </summary>
        public SvgImage SvgImage { get; set; }
        public override string ToString()
        {
            return null;
        }
    }
}