view Agendas/trunk/src/Agendas.Configurations/CalendarConfigurationElement.cs @ 240:01a9b47185eb

Tests de Twitter, daban en rojo por mensaje fijo (01/10/2011).
author juanjose.montesdeocaarbos
date Wed, 05 Oct 2011 07:41:30 -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; }
		}
	}
}