15 lines
475 B
C#
15 lines
475 B
C#
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
|
|
|
using System.Text.Json.Serialization;
|
|
using Wonderking.Packets.Outgoing.Data;
|
|
|
|
namespace Wonderking.Game.Mapping;
|
|
|
|
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; }
|
|
}
|