FastGithub/FastGithub.HttpServer/IRequestLoggingFeature.cs
2021-10-29 09:40:30 +08:00

14 lines
263 B
C#

namespace FastGithub.HttpServer
{
/// <summary>
/// 请求日志特性
/// </summary>
public interface IRequestLoggingFeature
{
/// <summary>
/// 是否启用
/// </summary>
bool Enable { get; set; }
}
}