using System;
namespace Flyinsono.Client.Test
{
public class LogMessage
{
//Gets the owner of this log.
public string Owner { get; }
///
/// Gets the time of this log.
///
public DateTime Time { get; }
///
/// Gets the of this log.
///
public LogLevel Level { get; }
///
/// Gets the content of this log.
///
public string Message { get; }
public LogMessage(string owner, DateTime time, LogLevel level, string message)
{
Owner = owner;
Time = time;
Level = level;
Message = message;
}
}
}