20 lines
415 B
C#
20 lines
415 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class Defecto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Descripcion { get; set; } = null!;
|
|
|
|
public bool Estaarreglado { get; set; }
|
|
|
|
public decimal Costo { get; set; }
|
|
|
|
public bool Pagainquilino { get; set; }
|
|
|
|
public virtual ICollection<Contrato> Idcontratos { get; set; } = new List<Contrato>();
|
|
}
|