oqtane.framework/Oqtane.Server/Logging/LogScope.cs

11 lines
213 B
C#

using System.Collections.Generic;
namespace Oqtane.Logging
{
public class LogScope
{
public string Text { get; set; }
public Dictionary<string, object> Properties { get; set; }
}
}