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