using System.Collections.Generic;
using IdentityServer4.Models;
using xIdentityModels.Descriptors;
namespace xIds.Models
{
///
/// the resource Descriptors for Using on DbSeed
///
public class XDbSeedDescriptor
{
public bool UpdateExists { get; set; }
public ICollection ApiScopes { get; set; }
public ICollection ApiResources { get; set; }
public ICollection IdentityResources { get; set; }
public ICollection Clients { get; set; }
public ICollection Users { get; set; }
}
}