17 lines
331 B
C#
17 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class v_lc_agrupadas_cia
|
|
{
|
|
public int? idliquidacioncia { get; set; }
|
|
|
|
/// <summary>
|
|
/// tabla compañia
|
|
/// </summary>
|
|
public int? idcompania { get; set; }
|
|
}
|