Files
Aberwyn/Nevyn/Models/MoneyContext.cs
2023-01-29 12:04:01 +01:00

15 lines
293 B
C#

using Microsoft.EntityFrameworkCore;
namespace Nevyn.Models
{
public class MoneyContext : DbContext
{
public MoneyContext(DbContextOptions<MoneyContext> options) : base(options)
{
}
public DbSet<Wallet> UpdateWallet { get; set; } = null!;
}
}