using System.Collections.Generic; using Model.Types; namespace Model.Entity.Parts; public class EntityMapModel : IEntityPartInterface { public string Type { get; set; } = "EntityMapModel"; public string PlayerCount { get; set; } = "Two"; public List ResourcePlatforms { get; set; } = []; }