1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Helper
- {
- public class SystemEnums
- {
- public enum FontsType
- {
- 微软雅黑,
- 新宋体,
- 仿宋,
- 宋体,
- 黑体,
- 楷体
- }
- public enum UserRole
- {
- 管理员,
- 工程师,
- 操作员,
- 访客
- }
- public enum Result
- {
- Fail,
- Success,
- }
- }
- }
|