8 lines
239 B
C#
8 lines
239 B
C#
|
|
namespace Brizco.Identity.Api.Domain;
|
|||
|
|
public class ApplicationContext : IdentityDbContext<ApplicationUser,ApplicationRole,Guid>
|
|||
|
|
{
|
|||
|
|
public ApplicationContext(DbContextOptions<ApplicationContext> options) : base(options)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|