feat: add src

closes #6
This commit is contained in:
cswimr 2025-01-29 18:09:21 +00:00
parent 93b6009d31
commit 8bcb8127bf
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
12 changed files with 411 additions and 1 deletions

15
Data/MyhmContext.cs Normal file
View file

@ -0,0 +1,15 @@
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!;
}
}