using System; using System.Collections.Generic; using System.Linq; using System.Text; using WindowsFormsApplication3.Enums; namespace WindowsFormsApplication3.Model { public class LogEntry { public CheckoutStep checkoutStep; public string message; public bool isError; public DateTime datetime; public LogEntry(CheckoutStep checkoutStep, string message, bool isError) { this.checkoutStep = checkoutStep; this.message = message; this.datetime = DateTime.Now; this.isError = isError; } } }
转载于:https://www.cnblogs.com/rosizel/p/3861649.html