view Agendas/trunk/src/Agendas.Domain/Van.cs @ 3:5f007e266509

code cleanup
author nelopauselli
date Sat, 22 Jan 2011 20:23:50 -0300
parents c03560ae4762
children
line wrap: on
line source

using System.Collections.Generic;

namespace AltNetHispano.Agendas.Domain
{
	public class Van : Evento
	{
		public string Ponente { get; set; }

		public IList<string> Enlaces { get; set; }
	}
}