forked from liza/Questionable
9 lines
272 B
C#
9 lines
272 B
C#
namespace Questionable.Model.Questing;
|
|
|
|
public sealed class SkipConditions
|
|
{
|
|
public SkipStepConditions? StepIf { get; set; }
|
|
public SkipAetheryteCondition? AetheryteShortcutIf { get; set; }
|
|
public SkipAetheryteCondition? AethernetShortcutIf { get; set; }
|
|
}
|