view Agendas/trunk/src/Agendas.Google/GooglePublicador.cs @ 123:f8568f01da4d

Mejorando los mensajes en Twitter
author nelopauselli
date Tue, 28 Jun 2011 20:53:30 -0300
parents 26d0513a8410
children 0ea32a748453
line wrap: on
line source

using System;
using System.Collections.Generic;
using AltNetHispano.Agendas.Domain;

namespace AltNetHispano.Agendas.Google
{
	public class GooglePublicador : IPublicador
	{
		public void Publicar(IEnumerable<Track> tracks)
		{
			throw new NotImplementedException();
		}
	}
}