13 lines
286 B
C#
13 lines
286 B
C#
namespace Core.Blueprint.Common.Runtime;
|
|
|
|
/// <summary>
|
|
/// Provides transport-neutral UTC time for runtime components.
|
|
/// </summary>
|
|
public interface IBlueprintSystemClock
|
|
{
|
|
/// <summary>
|
|
/// Gets current UTC timestamp.
|
|
/// </summary>
|
|
DateTimeOffset UtcNow { get; }
|
|
}
|