8 lines
210 B
C#
8 lines
210 B
C#
namespace Nerfed.Runtime.Scheduling;
|
|
|
|
public sealed class SystemSchedulerOptions
|
|
{
|
|
public bool EnableParallelSystemExecution { get; set; }
|
|
public bool StrictDependencyValidation { get; set; } = true;
|
|
}
|