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 LocationIds { get; set; } = new(); public List AssignedLocations { get; set; } = new(); }