using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace ACE.Server.Entity
{
public class StarterGearSkill
{
[JsonPropertyName("id")]
public ushort SkillId { get; set; }
///
/// not used, but the file has it for readability
///
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("gear")]
public List Gear { get; set; } = new List();
[JsonPropertyName("heritage")]
public List Heritage { get; set; } = new List();
[JsonPropertyName("spells")]
public List Spells { get; set; } = new List();
}
}