20 lines
460 B
C#
20 lines
460 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class colectivos
|
|
{
|
|
public int idColectivo { get; set; }
|
|
|
|
public string? descripcion { get; set; }
|
|
|
|
public string? numeroOrden { get; set; }
|
|
|
|
public string? referenciaHP { get; set; }
|
|
|
|
public virtual ICollection<polizasagrario> polizasagrario { get; set; } = new List<polizasagrario>();
|
|
}
|