AuthScopeSelectLocationOutputDto.cs
455 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth;
/// <summary>确认选店返回</summary>
public class AuthScopeSelectLocationOutputDto
{
public string PartnerId { get; set; } = string.Empty;
public string PartnerName { get; set; } = string.Empty;
public string GroupId { get; set; } = string.Empty;
public string GroupName { get; set; } = string.Empty;
public UsAppBoundLocationDto Location { get; set; } = new();
}