AuthScopeLocationOptionDto.cs 626 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth;

/// <summary>auth-scope / us-app-auth 门店下拉项</summary>
public class AuthScopeLocationOptionDto
{
    public string Id { get; set; } = string.Empty;

    public string LocationCode { get; set; } = string.Empty;

    public string LocationName { get; set; } = string.Empty;

    public string FullAddress { get; set; } = string.Empty;

    public bool State { get; set; } = true;

    public string PartnerId { get; set; } = string.Empty;

    public string GroupId { get; set; } = string.Empty;

    public string GroupName { get; set; } = string.Empty;
}