mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-21 07:45:22 +00:00
12 lines
211 B
C#
12 lines
211 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Daybreak.Shared.Models.Api;
|
|
|
|
[JsonConverter(typeof(JsonStringEnumConverter<DifficultyInfo>))]
|
|
public enum DifficultyInfo
|
|
{
|
|
Normal,
|
|
Hard,
|
|
Unknown
|
|
}
|