namespace FoodLabeling.Application.Contracts.Dtos.AuthScope;
///
/// 选定 Company 后的 Region(fl_group)下拉项。
///
public class AuthScopeRegionOptionDto
{
/// Region Id(fl_group.Id)
public string Id { get; set; } = string.Empty;
/// Region 名称
public string GroupName { get; set; } = string.Empty;
/// 所属公司 Id
public string PartnerId { get; set; } = string.Empty;
/// 是否启用
public bool State { get; set; }
}