por hoy todo

This commit is contained in:
2025-01-20 23:46:32 -03:00
parent 6d04fdb48a
commit 1b78956077
4 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
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; }
}

View File

@@ -0,0 +1,10 @@
namespace Entidades.Dto;
public class DefectoDto {
public long Id { get; set;}
public string Descripcion { get; set;} ="";
public Decimal Costo { get; set;}
public int Idestado { get; set;}
public long Idcontrato { get; set;}
public bool Pagainquilino { get; set;}
public int Iddivisa { get; set;}
}