using System; using System.Collections.Generic; using PropertyChanged; namespace bdGrupoSanchoToro.db; [AddINotifyPropertyChangedInterface] public partial class fiestas { public int idFiesta { get; set; } public string? Descripcion { get; set; } public DateOnly Fecha { get; set; } }