Files
SanchoToro/bdGrupoSanchoToro/db/fiestas.cs
2026-01-23 12:45:41 +01:00

16 lines
303 B
C#

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; }
}