using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; using TestScaffold.Models; namespace TestScaffold.Models { public class CalendarDbContext : DbContext { public DbSet Events { get; set; } public CalendarDbContext(DbContextOptions options) : base(options) { } public DbSet Usuario { get; set; } } public class Reservacion { public int ReservacionId { get; set; } public int UsuarioId { get; set; } public DateTime Fecha_Start{ get; set; } public DateTime Fecha_End { get; set; } public string Text { get; set; } public string Color { get; set; } public Usuario UsuarioIdNavigation { get; set; } } }