yale-user-access/packages/backend/Data/YaleContext.cs

12 lines
261 B
C#
Raw Permalink Normal View History

2025-01-10 08:37:18 +11:00
using Microsoft.EntityFrameworkCore;
namespace YaleAccess.Data
{
public class YaleContext : DbContext
{
public YaleContext(DbContextOptions<YaleContext> options) : base(options) { }
public DbSet<Person> People { get; set; }
}
}