AuthScopeCompanyOptionDto.cs 326 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth;

/// <summary>auth-scope / us-app-auth 公司下拉项</summary>
public class AuthScopeCompanyOptionDto
{
    public string Id { get; set; } = string.Empty;

    public string PartnerName { get; set; } = string.Empty;

    public bool State { get; set; } = true;
}