using FoodLabeling.Application.Contracts.Dtos.UsAppAuth;
namespace FoodLabeling.Th.Application.Contracts.Dtos.Auth;
///
/// 泰额版 App 登录返回(JWT 含 TenantId,可切换租户库)
///
public class ThAppLoginOutputDto
{
public string Token { get; set; } = string.Empty;
public string RefreshToken { get; set; } = string.Empty;
public Guid TenantId { get; set; }
public string TenantName { get; set; } = string.Empty;
public List Locations { get; set; } = new();
}