view Agendas/trunk/src/Agendas.Configurations/ShortenConfigurationElement.cs @ 269:17694f70cfb6

Test de PersonaController.
author juanjose.montesdeocaarbos
date Tue, 25 Oct 2011 23:24:57 -0300
parents fe47f11f5f20
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; }
		}
	}
}