15 lines
372 B
C#
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; }
|
|
}
|
|
} |