mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-14 04:19:24 +00:00
16 lines
281 B
C#
16 lines
281 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Daybreak.Shared.Models.Api;
|
|
|
|
[JsonConverter(typeof(JsonStringEnumConverter<CampaignInfo>))]
|
|
public enum CampaignInfo
|
|
{
|
|
Core,
|
|
Prophecies,
|
|
Factions,
|
|
Nightfall,
|
|
EyeOfTheNorth,
|
|
BonusMissionPack,
|
|
Unknown
|
|
}
|