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


    }
}
posted on 2014-07-22 23:13  rosizel  阅读(117)  评论(0编辑  收藏  举报