namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth; /// /// 美国版 App 登录入参(使用邮箱作为账号,支持图形验证码) /// public class UsAppLoginInputVo { /// 登录邮箱(对应 user.Email) public string Email { get; set; } = string.Empty; public string Password { get; set; } = string.Empty; /// 图形验证码 UUID(开启验证码时必填) public string? Uuid { get; set; } /// 图形验证码(开启验证码时必填) public string? Code { get; set; } }