using System; using System.Collections.Generic; using PropertyChanged; namespace bdAsegasa.db; [AddINotifyPropertyChangedInterface] public partial class destinos { public int idDestinos { get; set; } public int idLiquidacionViaje { get; set; } public string? Lugar { get; set; } public string? Concepto { get; set; } public virtual liquidacionesviajes idLiquidacionViajeNavigation { get; set; } = null!; }