48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdGrupoSanchoToro.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class eventos
|
|
{
|
|
public int idEvento { get; set; }
|
|
|
|
public string Descripcion { get; set; } = null!;
|
|
|
|
public int? idEntidad { get; set; }
|
|
|
|
public string? Telefono1 { get; set; }
|
|
|
|
public string? Telefono2 { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string? PersonaContacto { get; set; }
|
|
|
|
public DateOnly FechaAlta { get; set; }
|
|
|
|
public DateOnly? FechaBaja { get; set; }
|
|
|
|
public int? idUsuario { get; set; }
|
|
|
|
public string? Direccion { get; set; }
|
|
|
|
public string? CodigoPostal { get; set; }
|
|
|
|
public string? CodigoMunicipio { get; set; }
|
|
|
|
public string? Observaciones { get; set; }
|
|
|
|
public virtual municipios? CodigoMunicipioNavigation { get; set; }
|
|
|
|
public virtual ICollection<facturas> facturas { get; set; } = new List<facturas>();
|
|
|
|
public virtual entidades? idEntidadNavigation { get; set; }
|
|
|
|
public virtual usuarios? idUsuarioNavigation { get; set; }
|
|
|
|
public virtual ICollection<presupuestos> presupuestos { get; set; } = new List<presupuestos>();
|
|
}
|