view Agendas/trunk/src/Agendas.Configurations/BlogConfigurationElement.cs @ 286:a8f7c41e3b47

#196: Patrocinadores, en el histórico de eventos.
author juanjose.montesdeocaarbos
date Mon, 02 Jan 2012 15:51:19 -0300
parents 734d3f0853bf
children
line wrap: on
line source

using System.Configuration;

namespace AltNetHispano.Agendas.Configurations
{
	public class BlogConfigurationElement : ConfigurationElement
	{
		[ConfigurationProperty("writer")]
		public BlogWriterConfigurationElement Writer
		{
			get { return base["writer"] as BlogWriterConfigurationElement; }
		}

		[ConfigurationProperty("enabled")]
		public bool Enabled
		{
			get { return (bool) base["enabled"]; }
		}
	}
}