using System.Collections.Generic;
namespace Server.Helper.Tasks;
public class Task
{
public object[] task;
public List<string> TasksRunsed;
public long Runs;
public string Name;
public bool RunOnce;
}