chore: Añadida entidad de servicios que me olvidé

This commit is contained in:
2024-11-17 12:25:47 -03:00
parent d2adb7733e
commit 32c13d91b8
3 changed files with 53 additions and 0 deletions

13
Entidades/Servicio.cs Normal file
View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Servicio
{
public int Id { get; set; }
public string Descripcion { get; set; } = null!;
public virtual ICollection<Propiedade> IdPropiedads { get; set; } = new List<Propiedade>();
}