namespace ZeroFramework.IdentityServer.API.Models.Consents { public class ConsentInputModel { public string? Button { get; set; } public IEnumerable? ScopesConsented { get; set; } public bool RememberConsent { get; set; } public string? ReturnUrl { get; set; } public string? Description { get; set; } } }