ModernUO/Projects/Server/Kestrel/Transport.LIbuv/Internal/LibuvTransportContext.cs
2020-04-12 20:57:48 -07:00

16 lines
503 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.Extensions.Hosting;
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.Internal
{
internal class LibuvTransportContext
{
public LibuvTransportOptions Options { get; set; }
public IHostApplicationLifetime AppLifetime { get; set; }
public ILibuvTrace Log { get; set; }
}
}