namespace FoodLabeling.Application.Contracts.Dtos.AuthSession; /// /// 当前登录用户简要信息(不含敏感字段) /// public class CurrentUserBriefDto { /// /// 当前登录用户 Id(非租户 Id)。 /// public Guid Id { get; set; } public string UserName { get; set; } = string.Empty; public string? Nick { get; set; } public string? Email { get; set; } public string? Icon { get; set; } }