using System.Collections.Generic; namespace Teknik.IdentityServer.Models { public class ConsentInputModel { public string Button { get; set; } public IEnumerable ScopesConsented { get; set; } public bool RememberConsent { get; set; } public string ReturnUrl { get; set; } } }