Add project files.

This commit is contained in:
Elias Jansson
2023-01-29 12:04:01 +01:00
parent 1440dc03d5
commit 334c5b02d7
17 changed files with 557 additions and 0 deletions

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