Questionable/Questionable.Model/Questing/SkipConditions.cs

9 lines
272 B
C#
Raw Permalink Normal View History

2024-08-02 16:30:21 +00:00
namespace Questionable.Model.Questing;
2024-07-27 13:39:47 +00:00
public sealed class SkipConditions
{
public SkipStepConditions? StepIf { get; set; }
public SkipAetheryteCondition? AetheryteShortcutIf { get; set; }
2024-07-27 22:13:52 +00:00
public SkipAetheryteCondition? AethernetShortcutIf { get; set; }
2024-07-27 13:39:47 +00:00
}