punish v6.8.18.0
This commit is contained in:
commit
060278c1b7
317 changed files with 554155 additions and 0 deletions
|
@ -0,0 +1,24 @@
|
|||
using System.Collections.Generic;
|
||||
using Questionable.Model.Common.Converter;
|
||||
|
||||
namespace Questionable.Model.Questing.Converter;
|
||||
|
||||
public sealed class LockedSkipConditionConverter : EnumConverter<ELockedSkipCondition>
|
||||
{
|
||||
private static readonly Dictionary<ELockedSkipCondition, string> Values = new Dictionary<ELockedSkipCondition, string>
|
||||
{
|
||||
{
|
||||
ELockedSkipCondition.Locked,
|
||||
"Locked"
|
||||
},
|
||||
{
|
||||
ELockedSkipCondition.Unlocked,
|
||||
"Unlocked"
|
||||
}
|
||||
};
|
||||
|
||||
public LockedSkipConditionConverter()
|
||||
: base((IReadOnlyDictionary<ELockedSkipCondition, string>)Values)
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue