18 lines
359 B
C#
18 lines
359 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class v_codigosrecibos
|
|
{
|
|
public int idrecibo { get; set; }
|
|
|
|
public string? CodigoReciboc { get; set; }
|
|
|
|
public string? CodigoRecibo { get; set; }
|
|
|
|
public string? NumeroRecibo { get; set; }
|
|
}
|