Files
InfectedRose/InfectedRose.Interface/Templates/ObjectSkillEntry.cs
2023-07-15 10:51:25 +02:00

16 lines
409 B
C#

using System.Text.Json.Nodes;
using System.Text.Json.Serialization;
namespace InfectedRose.Interface.Templates;
public class ObjectSkillEntry
{
[JsonPropertyName("skill-id")]
public JsonValue SkillId { get; set; }
[JsonPropertyName("cast-on-type")]
public int CastOnType { get; set; }
[JsonPropertyName("combat-ai-weight")]
public int CombatAiWeight { get; set; }
}