Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Configurations/BlogConfigurationElement.cs @ 183:212c664db5aa
Generalización del manejo de las acciones sobre eventos
author | nelopauselli |
---|---|
date | Mon, 08 Aug 2011 22:27:00 -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"]; } } } }