8 lines
153 B
C#
8 lines
153 B
C#
using eSuite.Core.Clock;
|
|
|
|
namespace e_suite.Scheduler;
|
|
|
|
public interface ISchedule
|
|
{
|
|
DateTimeOffset NextScheduledExecution(IClock clock);
|
|
} |