Go to the documentation of this file.00001 using System.Configuration;
00002
00003 namespace N2.Configuration
00004 {
00005 public class InterfacePluginElement : NamedElement
00006 {
00007 [ConfigurationProperty("type", IsRequired = true)]
00008 public string Type
00009 {
00010 get { return (string)base["type"]; }
00011 set { base["type"] = value; }
00012 }
00013 }
00014 }