using Contracts.DTO; using Infrastructure.Models; using Microsoft.EntityFrameworkCore; namespace Infrastructure; public class DatabaseContext : DbContext { public DatabaseContext(DbContextOptions options) : base(options) { } public DbSet Users { get; set; } = null!; public DbSet SpendingGroups { get; set; } = null!; public DbSet ChangeRecords { get; set; } = null!; public DbSet SpendingPlans { get; set; } = null!; }