13 lines
333 B
C#
13 lines
333 B
C#
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Hcs.WebApp.Data.Hcs
|
|
{
|
|
public class HcsDbContext(DbContextOptions<HcsDbContext> options) : DbContext(options)
|
|
{
|
|
public DbSet<Registry> Registries { get; set; }
|
|
|
|
public DbSet<RegistryElement> Elements { get; set; }
|
|
}
|
|
}
|