You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
753 B

2 years ago
using CommunityToolkit.Mvvm.ComponentModel;
using System.Collections.Generic;
2 years ago
namespace BBWYB.Client.Models
{
2 years ago
public class User : ObservableObject
2 years ago
{
//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; }
2 years ago
public Shop Shop { get => shop; set { SetProperty(ref shop, value); } }
2 years ago
public IList<Department> DepartmentList { get; set; }
/// <summary>
/// 店铺列表 (暂时只有刷单组才需要)
/// </summary>
public IList<Shop> ShopList { get; set; }
}
}