Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/UsAppAuth/UsAppLoginInputVo.cs 615 Bytes
e5c6f343   李曜臣   登陆接口实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth;
  
  /// <summary>
  /// 美国版 App 登录入参(使用邮箱作为账号,支持图形验证码)
  /// </summary>
  public class UsAppLoginInputVo
  {
      /// <summary>登录邮箱(对应 user.Email</summary>
      public string Email { get; set; } = string.Empty;
  
      public string Password { get; set; } = string.Empty;
  
      /// <summary>图形验证码 UUID(开启验证码时必填)</summary>
      public string? Uuid { get; set; }
  
      /// <summary>图形验证码(开启验证码时必填)</summary>
      public string? Code { get; set; }
  }