using System;
using System.Collections.Generic;
using JetBrains.Annotations;
namespace Kyoo.Core.Models.Options
{
///
/// Options related to tasks
///
public class TaskOptions
{
///
/// The path of this options
///
public const string Path = "Tasks";
///
/// The number of tasks that can be run concurrently.
///
public int Parallels { get; set; }
///
/// The delay of tasks that should be automatically started at fixed times.
///
[UsedImplicitly]
public Dictionary Scheduled { get; set; } = new();
}
}