LookingGlass/Data/MyhmContext.cs
2025-01-29 18:09:21 +00:00

15 lines
350 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using Myhm.Models;
namespace Myhm.Data
{
public class MyhmContext(DbContextOptions<MyhmContext> options) : DbContext(options)
{
//public DbSet<Myhm.Models.Ban> Ban { get; set; } = default!;
}
}