3a2f68a232
Updated enums to match client formatting and ids Added `SkillClass` enum #368
15 lines
267 B
C#
15 lines
267 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Enums
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public enum SkillClass
|
|
{
|
|
Physical,
|
|
Combat,
|
|
Special,
|
|
Practical,
|
|
Mental
|
|
}
|
|
}
|