Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/UsAppAuth/UsAppLoginOutputDto.cs 460 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth;
  
  /// <summary>
  /// 美国版 App 登录返回(含 Token 与绑定门店)
  /// </summary>
  public class UsAppLoginOutputDto
  {
      public string Token { get; set; } = string.Empty;
  
      public string RefreshToken { get; set; } = string.Empty;
  
      /// <summary>当前账号在 userlocation 中绑定的门店列表</summary>
      public List<UsAppBoundLocationDto> Locations { get; set; } = new();
  }