|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace FryPot_DosingSystem.Model
- {
- internal class UserManage
- {
- public List<UserInfo> userInfos { get; set; } = new List<UserInfo>();
- }
- public class UserInfo
- {
- public Authority Authority { get; set; }
- public string UserName { get; set; }
- public string Password { get; set; }
- public string UserId { get; set; }
- }
-
- public enum Authority
- {
- 管理员 = 1,
- 操作员 = 2,
- 观察员 = 3,
- 技术员 = 4
- }
- }
|