Go to the documentation of this file.00001 using System;
00002 using System.Collections.Generic;
00003 using System.Text;
00004 using System.Configuration;
00005
00006 namespace N2.Configuration
00007 {
00008 public class FolderElement : ConfigurationElement
00009 {
00010 [ConfigurationProperty("path", IsKey = true)]
00011 public string Path
00012 {
00013 get { return (string)base["path"]; }
00014 set { base["path"] = value; }
00015 }
00016 }
00017 }