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