server-master/srcs/WingsAPI.Game/Miniland/MapDesignObject.cs
2026-02-10 18:21:30 +01:00

14 lines
No EOL
303 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsAPI.Data.Miniland;
using WingsEmu.Game.Inventory;
namespace WingsEmu.Game.Miniland;
public class MapDesignObject : CharacterMinilandObjectDto
{
public long CharacterId { get; set; }
public InventoryItem InventoryItem { get; set; }
}