migracion: añadida divisa

This commit is contained in:
2025-01-13 20:02:31 -03:00
parent a85d39cba8
commit 280bcd294a
6 changed files with 89 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Divisa
{
public int Id { get; set; }
public string Signo { get; set; } = null!;
public virtual ICollection<Contrato> Contratos { get; set; } = new List<Contrato>();
public virtual ICollection<Defecto> Defectos { get; set; } = new List<Defecto>();
public virtual ICollection<Propiedade> Propiedades { get; set; } = new List<Propiedade>();
public virtual ICollection<Venta> Venta { get; set; } = new List<Venta>();
}