15 lines
401 B
C#
15 lines
401 B
C#
|
using System.Text.Json.Serialization;
|
||
|
using Wonderking.Packets.Outgoing.Data;
|
||
|
|
||
|
namespace Server.PacketHandlers;
|
||
|
|
||
|
public class JobSpecificMapping
|
||
|
{
|
||
|
[JsonPropertyName("items")]
|
||
|
public ICollection<Item> Items { get; set; }
|
||
|
[JsonPropertyName("baseStats")]
|
||
|
public BaseStats BaseStats { get; set; }
|
||
|
[JsonPropertyName("dynamicStats")]
|
||
|
public DynamicStats DynamicStats { get; set; }
|
||
|
}
|