forked from hechenqingyuan/gitwms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEResourceType.cs
40 lines (33 loc) · 908 Bytes
/
EResourceType.cs
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
/*******************************************************************************
* Copyright (C) Git Corporation. All rights reserved.
*
* Author: 情缘
* Create Date: 2014/5/6 9:00:54
*
* Description: Git.Framework
* http://www.cnblogs.com/qingyuan/
* Revision History:
* Date Author Description
* 2014/5/6 9:00:54 情缘
*********************************************************************************/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Git.Storage.Common
{
public enum EResourceType
{
[Description("非控制")]
NoRole = 0,
[Description("页面")]
Page=1,
[Description("对话框")]
Dialog=2,
[Description("Ajax请求")]
Ajax=3,
[Description("链接")]
Link=4
}
}