11 lines
385 B
C#
11 lines
385 B
C#
using ApplicationHub.Data.EF.Authentication.Entities;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ApplicationHub.Data.EF.Authentication;
|
|
|
|
public class AuthenticationDataContext(DbContextOptions options) : DbContext(options)
|
|
{
|
|
public DbSet<UserEntity> Users { get; set; }
|
|
public DbSet<GroupEntity> Groups { get; set; }
|
|
public DbSet<RightEntity> Rights { get; set; }
|
|
} |