using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WindowsFormsApplication3.Model { public class LogEntry { protected List<LogEntry> logEntries; public List<LogEntry> LogEntries { get { return logEntries; } } protected string checkoutstep; public string CheckoutStep { get { return checkoutstep; } set { checkoutstep = value; } } protected string message; public string Message { get { return message; } set { message = value; } } protected DateTime datetime; public LogEntry(string cstep, string messg) { logEntries = new List<LogEntry>(); checkoutstep = cstep; this.message = messg; datetime = DateTime.Now; } public void LogWriteLine(string cstep, string messg) { logEntries.Add(new LogEntry(cstep, messg)); } } }