28 lines
604 B
C#
28 lines
604 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 int Iddivisa { get; set; }
|
|
|
|
public virtual Contrato? IdcontratoNavigation { get; set; }
|
|
|
|
public virtual Divisa IddivisaNavigation { get; set; } = null!;
|
|
|
|
public virtual Estadodefecto? IdestadoNavigation { get; set; }
|
|
}
|