AuthScopeRegionOptionDto.cs 383 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth;

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

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

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

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