16 lines
350 B
C#
16 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!;
|
||
|
}
|
||
|
}
|