blueprint-platform/src/Core.Blueprint.Common/Runtime/IBlueprintSystemClock.cs
2026-02-22 15:15:59 -06:00

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; }
}