00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00006 namespace NicoLiveTools { 00007 00011 public class DebugEventArgs : EventArgs{ 00015 public DateTime Time { 00016 get; 00017 private set; 00018 } 00022 public string Text { 00023 get; 00024 private set; 00025 } 00026 00031 public DebugEventArgs(string text) : base(){ 00032 Time = DateTime.Now; 00033 Text = text; 00034 } 00035 } 00036 }
1.6.1