view Agendas/trunk/src/Agendas.Configurations/TwitterSignInConfigurationElement.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 TwitterSignInConfigurationElement : ConfigurationElement
	{
		[ConfigurationProperty("consumerKey")]
		public string ConsumerKey
		{
			get { return base["consumerKey"] as string; }

		}

		[ConfigurationProperty("consumerSecret")]
		public string ConsumerSecret
		{
			get { return base["consumerSecret"] as string; }

		}
	}
}