using AspireApp.ApiService.Models; using Microsoft.EntityFrameworkCore; namespace AspireApp.ApiService; public class WeatherDbContext : DbContext { public WeatherDbContext(DbContextOptions options) : base(options) { } public DbSet WeatherForecasts { get; set; } }