namespace FoodLabeling.Application.Contracts.Dtos.AuthScope; /// /// 登录后选 Company(fl_partner)下拉项。 /// public class AuthScopeCompanyOptionDto { /// 公司 Id(fl_partner.Id public string Id { get; set; } = string.Empty; /// 公司名称 public string PartnerName { get; set; } = string.Empty; /// 是否启用 public bool State { get; set; } }