11 lines
364 B
C#
11 lines
364 B
C#
namespace Entidades.Dto;
|
|
public class ContratoDto {
|
|
public long id { get; set; }
|
|
public string Ubicacion { get; set; }="";
|
|
public string TipoPropiedad { get; set; }="";
|
|
public DateTime Fechainicio { get; set; }
|
|
public string Inquilino { get; set; }="";
|
|
public string Propietario { get; set; }="";
|
|
public string Estado {get; set;}="";
|
|
|
|
} |