This commit is contained in:
elias
2023-08-06 23:12:45 +02:00
parent c8242217a5
commit 3c22d881ae
7 changed files with 222 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
using System;
using Microsoft.EntityFrameworkCore;
namespace Nevyn.Models
{
public class BudgetContext : DbContext
{
public BudgetContext(DbContextOptions<BudgetContext> options) : base(options)
{
}
public DbSet<Budget> UpdateBudget { get; set; } = null!;
}
}