namespace GFramework.Core.Abstractions.time; /// /// 时间提供者接口,用于抽象时间获取以支持测试 /// public interface ITimeProvider { /// /// 获取当前 UTC 时间 /// DateTime UtcNow { get; } }