24 lines
496 B
C#
24 lines
496 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class Defecto
|
|
{
|
|
public long id { get; set; }
|
|
|
|
public string descripcion { get; set; } = null!;
|
|
|
|
public decimal costo { get; set; }
|
|
|
|
public int? idestado { get; set; }
|
|
|
|
public long? idcontrato { get; set; }
|
|
|
|
public ulong pagainquilino { get; set; }
|
|
|
|
public virtual Contrato? idcontratoNavigation { get; set; }
|
|
|
|
public virtual Estadodefecto? idestadoNavigation { get; set; }
|
|
}
|