首页 > 代码库 > LogEntry

LogEntry

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