Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Configurations/TwitterSignInConfigurationElement.cs @ 275:bf993f99cee3
Ticket #123: Patrocinadores de las vans.
author | juanjose.montesdeocaarbos |
---|---|
date | Wed, 14 Dec 2011 08:15:44 -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; } } } }