mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
697 B
22 lines
697 B
using MongoDB.Driver;
|
|
using Volo.Abp.Data;
|
|
using Volo.Abp.IdentityServer.Clients;
|
|
using Volo.Abp.IdentityServer.Grants;
|
|
using Volo.Abp.IdentityServer.IdentityResources;
|
|
using Volo.Abp.MongoDB;
|
|
using ApiResource = Volo.Abp.IdentityServer.ApiResources.ApiResource;
|
|
|
|
namespace Volo.Abp.IdentityServer.MongoDB
|
|
{
|
|
[ConnectionStringName("AbpIdentityServer")]
|
|
public interface IAbpIdentityServerMongoDbContext : IAbpMongoDbContext
|
|
{
|
|
IMongoCollection<ApiResource> ApiResources { get; }
|
|
|
|
IMongoCollection<Client> Clients { get; }
|
|
|
|
IMongoCollection<IdentityResource> IdentityResources { get; }
|
|
|
|
IMongoCollection<PersistedGrant> PersistedGrants { get; }
|
|
}
|
|
}
|
|
|