server-master/srcs/WingsAPI.Data/Maps/MapDataDTO.cs
2026-02-10 18:21:30 +01:00

16 lines
No EOL
322 B
C#

// WingsEmu
//
// Developed by NosWings Team
using PhoenixLib.DAL;
namespace WingsEmu.DTOs.Maps;
public class MapDataDTO : IIntDto
{
public short Height { get; set; }
public short Width { get; set; }
public byte[] Grid { get; set; }
public string Name { get; set; }
public int Id { get; set; }
}