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