using System.ComponentModel.DataAnnotations;
namespace FoodLabeling.Th.Application.Contracts.Dtos.Auth;
///
/// 泰额版 App 登录(须指定租户,用户数据在租户独立库)
///
public class ThAppLoginInputVo
{
/// 租户 Id(平台主库 yitenant.Id)
[Required]
public Guid TenantId { get; set; }
/// 登录邮箱
[Required]
public string Email { get; set; } = string.Empty;
[Required]
public string Password { get; set; } = string.Empty;
public string? Uuid { get; set; }
public string? Code { get; set; }
}