13 lines
495 B
C#
13 lines
495 B
C#
namespace Microsoft.eShopOnContainers.Services.Identity.API.Models.ConsentViewModels
|
|
{
|
|
public class ConsentViewModel : ConsentInputModel
|
|
{
|
|
public string ClientName { get; set; }
|
|
public string ClientUrl { get; set; }
|
|
public string ClientLogoUrl { get; set; }
|
|
public bool AllowRememberConsent { get; set; }
|
|
|
|
public IEnumerable<ScopeViewModel> IdentityScopes { get; set; }
|
|
public IEnumerable<ScopeViewModel> ApiScopes { get; set; }
|
|
}
|
|
} |