Test
This commit is contained in:
16
Nevyn/Models/BudgetContext.cs
Normal file
16
Nevyn/Models/BudgetContext.cs
Normal 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!;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user