dbc9750f
李曜臣
成员模块实现
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
namespace FoodLabeling.Application.Contracts.Dtos.TeamMember;
public class TeamMemberGetOutputDto
{
public Guid Id { get; set; }
public string FullName { get; set; } = string.Empty;
public string UserName { get; set; } = string.Empty;
public string? Email { get; set; }
public long? Phone { get; set; }
public bool State { get; set; }
public Guid? RoleId { get; set; }
public List<string> LocationIds { get; set; } = new();
public List<TeamMemberAssignedLocationDto> AssignedLocations { get; set; } = new();
}
|