7 lines
120 B
C#
7 lines
120 B
C#
namespace Core.DI;
|
|
|
|
public interface OnUpdate
|
|
{
|
|
Task<bool> OnUpdate(long timeSinceLastRun);
|
|
string GetRoute();
|
|
} |