8 lines
268 B
C#
8 lines
268 B
C#
namespace Entidades.Dto;
|
|
public class AltaDefectoDto {
|
|
public string Descripcion { get; set; } ="";
|
|
public Decimal Costo { get; set; }
|
|
public ulong Pagainquilino { get; set; }
|
|
public int Iddivisa { get; set; }
|
|
public long Idcontrato { get; set; }
|
|
} |