24 lines
409 B
C#
24 lines
409 B
C#
/*
|
|
* Author: Nikolay Dvurechensky
|
|
* Site: https://www.dvurechensky.pro/
|
|
* Gmail: dvurechenskysoft@gmail.com
|
|
* Last Updated: 12 мая 2025 03:31:02
|
|
* Version: 1.0.7
|
|
*/
|
|
|
|
namespace Strategy;
|
|
|
|
public enum LogType
|
|
{
|
|
Debug,
|
|
Warning,
|
|
Fatal
|
|
}
|
|
|
|
public struct LogEntry
|
|
{
|
|
public DateTime DateTime { get; set; }
|
|
public LogType LogType { get; set; }
|
|
public string Message { get; set; }
|
|
}
|