using System;
using System.Collections.Generic;
namespace MySystem
{
    public class ErrorMsg
    {
        public DateTime Time { get; set; }
        public string ErrorContent { get; set; } 
        public object Obj { get; set; }
    }
}