2023-11-16 20:01:55 +00:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
using Wonderking.Packets.Outgoing.Data;
|
|
|
|
|
2023-11-16 20:05:33 +00:00
|
|
|
namespace Wonderking.Game.Mapping;
|
2023-11-16 20:01:55 +00:00
|
|
|
|
|
|
|
public class JobSpecificMapping
|
|
|
|
{
|
2023-11-19 16:07:28 +00:00
|
|
|
[JsonPropertyName("items")] public ICollection<Item> Items { get; set; }
|
|
|
|
|
|
|
|
[JsonPropertyName("baseStats")] public BaseStats BaseStats { get; set; }
|
|
|
|
|
|
|
|
[JsonPropertyName("dynamicStats")] public DynamicStats DynamicStats { get; set; }
|
2023-11-16 20:01:55 +00:00
|
|
|
}
|