Files
AlquilaFacil/Entidades/Dto/AltaDefectoDto.cs
2025-01-20 23:46:32 -03:00

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; }
}