mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-21 07:45:22 +00:00
38 lines
651 B
C#
38 lines
651 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Daybreak.Shared.Models.Api;
|
|
|
|
[JsonConverter(typeof(JsonStringEnumConverter<RegionInfo>))]
|
|
public enum RegionInfo
|
|
{
|
|
Kryta,
|
|
Maguuma,
|
|
Ascalon,
|
|
NorthernShiverpeaks,
|
|
HeroesAscent,
|
|
CrystalDesert,
|
|
FissureOfWoe,
|
|
Presearing,
|
|
Kaineng,
|
|
Kurzick,
|
|
Luxon,
|
|
ShingJea,
|
|
Kourna,
|
|
Vaabi,
|
|
Desolation,
|
|
Istan,
|
|
DomainOfAnguish,
|
|
TarnishedCoast,
|
|
DepthsOfTyria,
|
|
FarShiverpeaks,
|
|
CharrHomelands,
|
|
BattleIslands,
|
|
TheBattleOfJahai,
|
|
TheFlightNorth,
|
|
TheTenguAccords,
|
|
TheRiseOfTheWhiteMantle,
|
|
Swat,
|
|
DevRegion,
|
|
Unknown
|
|
}
|