///
/// Copyright © 2003-2008 JetBrains s.r.o.
/// You may distribute under the terms of the GNU General Public License, as published by the Free Software Foundation, version 2 (see License.txt in the repository root folder).
///
namespace JetBrains.Omea.OpenApiEx
{
///
/// A folder contains other folder and tasks.
///
public interface ISchedullerTaskFolder : IResourceObject
{
///
/// Gets the tasks in this folder, non-recursively.
///
IResourceObjectsListByName Tasks { get; }
///
/// Gets the tasks in this folder and in all the folders under this one, recursively.
///
IResourceObjectsListByName TasksRecursive { get; }
///
/// Gets the sub-folders in this folder, non-recursively.
///
IResourceObjectsListByName Folders { get; }
}
}