PatternsCSharpProgramming/Patterns/Strategy/LogEntry.cs
Dvurechensky 3a28caed27 1.0
Main
2024-10-05 09:15:54 +03:00

16 lines
234 B
C#

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; }
}