continuity/Server/PacketHandlers/Item.cs

12 lines
235 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace Server.PacketHandlers;
public class Item
{
[JsonPropertyName("id")]
public ushort Id { get; set; }
[JsonPropertyName("quantity")]
public ushort Quantity { get; set; }
}