19 lines
643 B
C#
19 lines
643 B
C#
using System.Collections.Generic;
|
|
using IdentityServer4.Models;
|
|
using xIdentityModels.Descriptors;
|
|
|
|
namespace xIds.Models
|
|
{
|
|
/// <summary>
|
|
/// the resource Descriptors for Using on DbSeed
|
|
/// </summary>
|
|
public class XDbSeedDescriptor
|
|
{
|
|
public bool UpdateExists { get; set; }
|
|
public ICollection<ApiScope> ApiScopes { get; set; }
|
|
public ICollection<ApiResource> ApiResources { get; set; }
|
|
public ICollection<IdentityResource> IdentityResources { get; set; }
|
|
public ICollection<Client> Clients { get; set; }
|
|
public ICollection<XIdentityUserDescriptor> Users { get; set; }
|
|
}
|
|
} |