Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Configurations/CalendarConfigurationElement.cs @ 158:734d3f0853bf
Manejando configuración de los publicadores con una sección propia en los .config
Agregando la opción de habilitar / deshabilitar un publicador
author | nelopauselli |
---|---|
date | Fri, 05 Aug 2011 16:55:18 -0300 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Agendas/trunk/src/Agendas.Configurations/CalendarConfigurationElement.cs Fri Aug 05 16:55:18 2011 -0300 @@ -0,0 +1,25 @@ +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; } + } + } +} \ No newline at end of file