using System.Collections.Generic; using Model.Types; namespace Model.Entity.Parts; public class EntityMapBasePlatformModel : IEntityPartInterface { public string Type { get; set; } = "EntityMapBasePlatformModel"; public List ConnectedResourceNodes { get; set; } = new(); }