00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00006 namespace Siki.Configure { 00007 00011 public class ConfigureEventArgs : EventArgs{ 00012 private string m_path; 00013 00014 public string Path { 00015 get { 00016 return m_path; 00017 } 00018 } 00019 00020 public ConfigureEventArgs(string path){ 00021 m_path = path; 00022 } 00023 } 00024 }
1.6.1