16 lines
303 B
C#
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; }
|
|
}
|