using System.Collections.Generic; namespace U { public class User : NotifyObject { //private string name; private Shop shop; public long Id { get; set; } public string Name { get; set; } public string TeamId { get; set; } public string TeamName { get; set; } public string SonDepartmentNames { get; set; } public Shop Shop { get => shop; set { Set(ref shop, value); } } public IList DepartmentList { get; set; } /// /// 店铺列表 (暂时只有刷单组才需要) /// public IList ShopList { get; set; } public string Token { get; set; } } }