// Copyright (c) 2025-2026 GeWuYou
// SPDX-License-Identifier: Apache-2.0
using GFramework.Core.Abstractions.Time;
namespace GFramework.Core.Time;
///
/// 系统时间提供者,返回真实的系统时间
///
public sealed class SystemTimeProvider : ITimeProvider
{
///
/// 获取当前 UTC 时间
///
public DateTime UtcNow => DateTime.UtcNow;
}