view Agendas/trunk/src/Agendas.Configurations/ShortenConfigurationElement.cs @ 189:fe47f11f5f20

Adapter para url shorten de google
author nelopauselli
date Tue, 09 Aug 2011 09:38:28 -0300
parents
children
line wrap: on
line source

using System.Configuration;

namespace AltNetHispano.Agendas.Configurations
{
	public class ShortenConfigurationElement : ConfigurationElement
	{
		[ConfigurationProperty("urlAPI")]
		public string UrlAPI
		{
			get { return base["urlAPI"] as string; }
		}
	}
}