view Agendas/trunk/src/Agendas.Google/GooglePublicador.cs @ 119:8fa58a79656a

Historico
author Nelo@Kenia.neluz.int
date Wed, 22 Jun 2011 09:49:07 -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();
		}
	}
}