///
/// 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
{
///
/// Data entries for the Scheduller.
///
public interface ISchedullerData
{
///
/// Gets the resource type … for the … resource.
///
string SchedullerTaskResourceTypeName { get; }
///
/// Gets the resource type … for the … resource.
///
int SchedullerTaskResourceType { get; }
///
/// Gets the resource type … for the … resource.
///
string SchedullerGroupResourceTypeName { get; }
///
/// Gets the resource type … for the … resource.
///
int SchedullerGroupResourceType { get; }
}
}