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