Go to the documentation of this file.00001 using System.Configuration;
00002
00003 namespace N2.Configuration
00004 {
00005 public class GlobalizationElement : ConfigurationElement
00006 {
00007 [ConfigurationProperty("enabled", DefaultValue = false)]
00008 public bool Enabled
00009 {
00010 get { return (bool)base["enabled"]; }
00011 set { base["enabled"] = value; }
00012 }
00013
00014 [ConfigurationProperty("autoDeleteTranslations", DefaultValue = false)]
00015 public bool AutoDeleteTranslations
00016 {
00017 get { return (bool)base["autoDeleteTranslations"]; }
00018 set { base["autoDeleteTranslations"] = value; }
00019 }
00020 }
00021 }