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