BITKit/Src/Core/Priority/Priority.cs

8 lines
94 B
C#

namespace BITKit
{
public interface IPriority
{
int GetPriority();
}
}