ThAppLoginOutputDto.cs
547 Bytes
using FoodLabeling.Application.Contracts.Dtos.UsAppAuth;
namespace FoodLabeling.Th.Application.Contracts.Dtos.Auth;
/// <summary>
/// 泰额版 App 登录返回(JWT 含 TenantId,可切换租户库)
/// </summary>
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<UsAppBoundLocationDto> Locations { get; set; } = new();
}