14 lines
282 B
C#
14 lines
282 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class v_documentos_pendientes_subir
|
|
{
|
|
public int idPoliza { get; set; }
|
|
|
|
public long DocumentosPendientes { get; set; }
|
|
}
|