Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Configurations/BlogConfigurationElement.cs @ 215:85ddae313408
Se soluciona ticket #178. Se resuelve ordenar Historico de Eventos solamente por NumeroOrden de forma descendente.
author | alabra |
---|---|
date | Sun, 04 Sep 2011 18:35:33 -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"]; } } } }