Go to the documentation of this file.00001 using System.Configuration;
00002
00003 namespace N2.Configuration
00004 {
00005 public class SettingsEditorElement : ConfigurationElement
00006 {
00007 public SettingsEditorElement()
00008 {
00009 }
00010
00011 public SettingsEditorElement(string name, string path)
00012 {
00013 Name = name;
00014 Path = path;
00015 }
00016
00017
00018 [ConfigurationProperty("name", IsKey = true)]
00019 public string Name
00020 {
00021 get { return (string)base["name"]; }
00022 set { base["name"] = value; }
00023 }
00024
00025 [ConfigurationProperty("path")]
00026 public string Path
00027 {
00028 get { return (string)base["path"]; }
00029 set { base["path"] = value; }
00030 }
00031 }
00032 }