mirror of https://github.com/abpframework/abp
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.
21 lines
587 B
21 lines
587 B
using MongoDB.Driver;
|
|
using Volo.Abp.Data;
|
|
using Volo.Abp.MongoDB;
|
|
|
|
namespace Volo.Abp.Identity.MongoDB
|
|
{
|
|
[ConnectionStringName(AbpIdentityDbProperties.ConnectionStringName)]
|
|
public interface IAbpIdentityMongoDbContext : IAbpMongoDbContext
|
|
{
|
|
IMongoCollection<IdentityUser> Users { get; }
|
|
|
|
IMongoCollection<IdentityRole> Roles { get; }
|
|
|
|
IMongoCollection<IdentityClaimType> ClaimTypes { get; }
|
|
|
|
IMongoCollection<OrganizationUnit> OrganizationUnits { get; }
|
|
|
|
IMongoCollection<IdentitySecurityLog> IdentitySecurityLogs { get; }
|
|
}
|
|
}
|