2024-07-27 13:39:47 +00:00
|
|
|
|
using System.Collections.Generic;
|
2024-08-02 16:30:21 +00:00
|
|
|
|
using Questionable.Model.Common.Converter;
|
2024-07-27 13:39:47 +00:00
|
|
|
|
|
2024-08-02 16:30:21 +00:00
|
|
|
|
namespace Questionable.Model.Questing.Converter;
|
2024-07-27 13:39:47 +00:00
|
|
|
|
|
|
|
|
|
public sealed class LockedSkipConditionConverter() : EnumConverter<ELockedSkipCondition>(Values)
|
|
|
|
|
{
|
|
|
|
|
private static readonly Dictionary<ELockedSkipCondition, string> Values = new()
|
|
|
|
|
{
|
|
|
|
|
{ ELockedSkipCondition.Locked, "Locked" },
|
|
|
|
|
{ ELockedSkipCondition.Unlocked, "Unlocked" },
|
|
|
|
|
};
|
|
|
|
|
}
|