Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Configurations/CalendarConfigurationElement.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 CalendarConfigurationElement : ConfigurationElement { [ConfigurationProperty("userName")] public string UserName { get { return base["userName"] as string; } } [ConfigurationProperty("password")] public string Password { get { return base["password"] as string; } } [ConfigurationProperty("calendarId")] public string CalendarId { get { return base["calendarId"] as string; } } } }