Files
Aberwyn/Nevyn/Models/BudgetContext.cs
2023-08-06 23:12:45 +02:00

17 lines
311 B
C#

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!;
}
}