PatternsCSharpProgramming/Patterns/Strategy/LogEntry.cs

16 lines
234 B
C#
Raw Normal View History

2024-10-05 09:15:54 +03:00
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; }
}