// Author: Simon Gockner
// Created: 2020-02-08
// Copyright(c) 2020 SimonG. All Rights Reserved.
using System;
namespace GBase.Logging.Interfaces
{
///
/// An interface that is used to handle log messages
///
public interface ILogMessage
{
///
/// The of the
///
LogLevels LogLevel { get; set; }
///
/// The of the
///
DateTime Timestamp { get; set; }
///
/// The of the
///
ILogComponent Component { get; set; }
///
/// The of the
///
string Message { get; set; }
}
}