File: SystemDateTime.cs
Web Access
Project: src\aspnetcore\src\Middleware\HttpLogging\src\Microsoft.AspNetCore.HttpLogging.csproj (Microsoft.AspNetCore.HttpLogging)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace Microsoft.AspNetCore.HttpLogging;

internal sealed class SystemDateTime : ISystemDateTime
{
    public DateTime Now => DateTime.Now;
}