zeroframework/Services/Identity/ZeroFramework.IdentityServer.API/Models/Consents/ConsentInputModel.cs
2023-12-05 17:22:48 +08:00

15 lines
372 B
C#

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