using DotBased.AspNet.Authority.Models.Authority; using Microsoft.EntityFrameworkCore; namespace DotBased.AspNet.Authority.EFCore; public class AuthorityContext : DbContext { public DbSet Attributes { get; set; } public DbSet Groups { get; set; } public DbSet Roles { get; set; } public DbSet Users { get; set; } }