// WingsEmu // // Developed by NosWings Team using System.Collections.Generic; using WingsEmu.DTOs.Maps; namespace WingsEmu.Game.Maps; public class Map { public List Flags { get; init; } public IReadOnlyList Grid { get; init; } public int MapId { get; init; } public int Width { get; init; } public int Height { get; init; } public int MapVnum { get; init; } public int MapNameId { get; init; } public int Music { get; init; } }