using GFramework.Core.Abstractions.time; namespace GFramework.Core.time; /// /// 系统时间提供者,返回真实的系统时间 /// public sealed class SystemTimeProvider : ITimeProvider { /// /// 获取当前 UTC 时间 /// public DateTime UtcNow => DateTime.UtcNow; }