9 lines
117 B
C#
9 lines
117 B
C#
namespace Obi
|
|
{
|
|
public interface IObiJobHandle
|
|
{
|
|
void Complete();
|
|
void Release();
|
|
}
|
|
}
|