Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/AuthSession/CurrentUserBriefDto.cs 398 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  namespace FoodLabeling.Application.Contracts.Dtos.AuthSession;
  
  /// <summary>
  /// 当前登录用户简要信息(不含敏感字段)
  /// </summary>
  public class CurrentUserBriefDto
  {
      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; }
  }