forked from Siyy/RoadFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorkFlowButtons.cs
More file actions
47 lines (40 loc) · 1.03 KB
/
WorkFlowButtons.cs
File metadata and controls
47 lines (40 loc) · 1.03 KB
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
45
46
47
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Data.Model
{
[Serializable]
public class WorkFlowButtons
{
/// <summary>
/// ID
/// </summary>
[DisplayName("ID")]
public Guid ID { get; set; }
/// <summary>
/// 标题
/// </summary>
[DisplayName("标题")]
public string Title { get; set; }
/// <summary>
/// 图标
/// </summary>
[DisplayName("图标")]
public string Ico { get; set; }
/// <summary>
/// 脚本
/// </summary>
[DisplayName("脚本")]
public string Script { get; set; }
/// <summary>
/// 备注说明
/// </summary>
[DisplayName("备注说明")]
public string Note { get; set; }
/// <summary>
/// 排序
/// </summary>
[DisplayName("排序")]
public int Sort { get; set; }
}
}