using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Face.Web.Areas.App.Models { public class Userinfo { /// /// /// public string HeadImg { get; set; } public string Uid { get; set; } } public class AuthItem { /// /// /// public int AuthotypeId { get; set; } /// /// /// public int AuthorityId { get; set; } /// /// 分配酒店 /// public string AuthorityName { get; set; } } public class HotelsItem { /// /// /// public List Auth { get; set; } /// /// 默认酒店 /// public string HotelName { get; set; } /// /// /// public int Code { get; set; } /// /// /// public int HotelId { get; set; } } public class HotelDataItem { /// /// 宝来威 /// public string HotelGroupsName { get; set; } /// /// /// public int HotelGroupsId { get; set; } /// /// /// public List Hotels { get; set; } } public class Data { /// /// /// public Userinfo Userinfo { get; set; } /// /// /// public List HotelData { get; set; } } public class Root { /// /// /// public Data Data { get; set; } /// /// /// public int Status { get; set; } /// /// 请求成功~ /// public string Message { get; set; } } }