using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Rdh.SocketServer.Client.Models { /// /// 标识用户角色的结构 /// public struct UserRoleCodes { /// /// 麻醉医生 /// public const string Anesthesiologist = "01"; /// /// 药剂师 /// public const string Pharmacist = "02"; /// /// 其他 /// public const string Other = "03"; } }