00001 using System; 00002 using System.Collections.Generic; 00003 using System.Text; 00004 using System.Configuration; 00005 00006 namespace N2.Configuration 00007 { 00011 public class MappingElement : ConfigurationElement 00012 { 00014 [ConfigurationProperty("name", IsKey = true, IsRequired = true)] 00015 public string Name 00016 { 00017 get { return (string)base["name"]; } 00018 set { base["name"] = value; } 00019 } 00020 } 00021 }