12 lines
235 B
C#
12 lines
235 B
C#
|
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; }
|
||
|
}
|