annotate Agendas/trunk/src/Agendas.Configurations/ShortenConfigurationElement.cs @ 272:33e6ee3d1776

Ticket #181: No twittear eventos pasados. Tests armado, y su corrección. Corrección de otros tests que intentaban twittear con fechas fijas.
author juanjose.montesdeocaarbos
date Fri, 18 Nov 2011 23:09:58 -0300
parents fe47f11f5f20
children
rev   line source
189
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
1 using System.Configuration;
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
2
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
3 namespace AltNetHispano.Agendas.Configurations
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
4 {
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
5 public class ShortenConfigurationElement : ConfigurationElement
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
6 {
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
7 [ConfigurationProperty("urlAPI")]
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
8 public string UrlAPI
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
9 {
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
10 get { return base["urlAPI"] as string; }
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
11 }
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
12 }
fe47f11f5f20 Adapter para url shorten de google
nelopauselli
parents:
diff changeset
13 }