using System; using System.Collections.Generic; using System.Text.Json.Serialization; namespace Entidades; public partial class Servicio { public int Id { get; set; } public string Descripcion { get; set; } = null!; [JsonIgnore] public virtual ICollection IdPropiedads { get; set; } = new List(); }