namespace FoodLabeling.Application.Contracts.Dtos.AuthScope;
///
/// 选定 Company + Region 后的门店(location)下拉项。
///
public class AuthScopeLocationOptionDto
{
/// 门店 Id(Guid 字符串)
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; }
public string PartnerId { get; set; } = string.Empty;
public string GroupId { get; set; } = string.Empty;
public string GroupName { get; set; } = string.Empty;
}