Add project files.
This commit is contained in:
14
Nevyn/Models/MoneyContext.cs
Normal file
14
Nevyn/Models/MoneyContext.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace Nevyn.Models
|
||||
{
|
||||
public class MoneyContext : DbContext
|
||||
{
|
||||
public MoneyContext(DbContextOptions<MoneyContext> options) : base(options)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public DbSet<Wallet> UpdateWallet { get; set; } = null!;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user