9 lines
272 B
C#
Raw Normal View History

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