9 lines
184 B
C#
9 lines
184 B
C#
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace Server.PacketHandlers;
|
||
|
|
||
|
public class DefaultCharacterMapping
|
||
|
{
|
||
|
[JsonPropertyName("items")] public List<Item> Items { get; set; }
|
||
|
}
|