namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth; /// auth-scope / us-app-auth 门店下拉项 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; }