namespace Umbraco.Cms.Core.Logging.Viewer;
public interface ILogEntry
{
///
/// Gets or sets the time at which the log event occurred.
///
DateTimeOffset Timestamp { get; set; }
///
/// Gets or sets the level of the log event.
///
LogLevel Level { get; set; }
///
/// Gets or sets the message template describing the log event.
///
string? MessageTemplateText { get; set; }
///
/// Gets or sets the message template filled with the log event properties.
///
string? RenderedMessage { get; set; }
///
/// Gets or sets the properties associated with the log event.
///
IReadOnlyDictionary Properties { get; set; }
///
/// Gets or sets an exception associated with the log event, or null.
///
string? Exception { get; set; }
}