UsAppLoginOutputDto.cs
460 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth;
/// <summary>
/// 美国版 App 登录返回(含 Token 与绑定门店)
/// </summary>
public class UsAppLoginOutputDto
{
public string Token { get; set; } = string.Empty;
public string RefreshToken { get; set; } = string.Empty;
/// <summary>当前账号在 userlocation 中绑定的门店列表</summary>
public List<UsAppBoundLocationDto> Locations { get; set; } = new();
}