首页 > 其他 > 详细

LogEntry

时间:2014-07-23 11:41:56      阅读:307      评论:0      收藏:0      [点我收藏+]
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;
        }


    }
}

LogEntry,布布扣,bubuko.com

LogEntry

原文:http://www.cnblogs.com/rosizel/p/3861649.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!