10 lines
270 B
C#
10 lines
270 B
C#
namespace Entidades.Dto;
|
|
public class CanonDto{
|
|
public long Id { get; set;}
|
|
public int MesNum { get; set;}
|
|
public DateTime Mes { get; set;}
|
|
public Decimal Monto { get; set;}
|
|
public string Divisa { get; set;} = "";
|
|
public bool Pago { get; set;}
|
|
|
|
} |