mirror of
https://github.com/C9Glax/tranga.git
synced 2025-07-04 18:04:16 +02:00
9 lines
273 B
C#
9 lines
273 B
C#
namespace API.Workers;
|
|
|
|
public interface IPeriodic
|
|
{
|
|
internal DateTime LastExecution { get; set; }
|
|
public TimeSpan Interval { get; set; }
|
|
public DateTime NextExecution => LastExecution.Add(Interval);
|
|
public bool IsDue => NextExecution <= DateTime.UtcNow;
|
|
} |