码迷,mamicode.com
首页 > 其他好文 > 详细

LogEntry

时间:2014-07-23 11:41:56      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   re   

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

标签:style   blog   color   io   for   re   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!