9 lines
138 B
C#
9 lines
138 B
C#
namespace Content.Server.CPUJob.JobQueues
|
|
{
|
|
public interface IJob
|
|
{
|
|
JobStatus Status { get; }
|
|
void Run();
|
|
}
|
|
}
|