namespace FoodLabeling.Application.Contracts.Dtos.AuthScope;
///
/// 确认当前工作门店(选完 Company → Region → Location 后提交)。
///
public class AuthScopeSelectLocationInputVo
{
/// 公司 Id(fl_partner.Id)
public string PartnerId { get; set; } = string.Empty;
/// Region Id(fl_group.Id)
public string GroupId { get; set; } = string.Empty;
/// 门店 Id(location.Id,Guid 字符串)
public string LocationId { get; set; } = string.Empty;
}