using System; using System.Collections.Generic; using PropertyChanged; namespace bdGrupoSanchoToro.db; [AddINotifyPropertyChangedInterface] public partial class articulos { public int idArticulo { get; set; } public int? idProducto { get; set; } public string? CodigoArticulo { get; set; } public string? NumeroSerie { get; set; } public int? idProveedor { get; set; } public DateOnly? FechaFinGarantia { get; set; } public DateOnly? FechaAlta { get; set; } public DateOnly? FechaBaja { get; set; } public int? idDetalleFra { get; set; } public int? idDetalleFraVenta { get; set; } public int? idFichero { get; set; } public string? Matricula { get; set; } public string? Observaciones { get; set; } public virtual ICollection detallepresupuesto { get; set; } = new List(); public virtual ICollection detallesalbaranes { get; set; } = new List(); public virtual ICollection expedientesarticulos { get; set; } = new List(); public virtual gruasparticulares? gruasparticulares { get; set; } public virtual detallesfacturas? idDetalleFraNavigation { get; set; } public virtual detallesfacturasrecibidas? idDetalleFraVentaNavigation { get; set; } public virtual ficheros? idFicheroNavigation { get; set; } public virtual productos? idProductoNavigation { get; set; } public virtual entidades? idProveedorNavigation { get; set; } }