19 lines
382 B
C#
19 lines
382 B
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pilz.Dalamud.ActivityContexts
|
|
{
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public enum ActivityType
|
|
{
|
|
None = 0x0,
|
|
PveDuty = 0x1,
|
|
PvpDuty = 0x2
|
|
}
|
|
}
|