mirror of
https://github.com/Wincent01/InfectedRose.git
synced 2025-12-31 09:19:58 -06:00
16 lines
409 B
C#
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; }
|
|
} |