diff Agendas/trunk/src/Agendas.Configurations/GoogleConfigurationElement.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 fe47f11f5f20
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Agendas/trunk/src/Agendas.Configurations/GoogleConfigurationElement.cs	Fri Aug 05 16:55:18 2011 -0300
@@ -0,0 +1,19 @@
+using System.Configuration;
+
+namespace AltNetHispano.Agendas.Configurations
+{
+	public class GoogleConfigurationElement : ConfigurationElement
+	{
+		[ConfigurationProperty("calendar")]
+		public CalendarConfigurationElement Calendar
+		{
+			get { return base["calendar"] as CalendarConfigurationElement; }
+		}
+
+		[ConfigurationProperty("enabled")]
+		public bool Enabled
+		{
+			get { return (bool) base["enabled"]; }
+		}
+	}
+}
\ No newline at end of file