view Agendas/trunk/src/Agendas.Domain/Van.cs @ 2:c03560ae4762

Test de Crud para la agenda
author nelopauselli
date Sat, 22 Jan 2011 20:21:31 -0300
parents 6bb4ab4c0611
children 5f007e266509
line wrap: on
line source

using System;
using System.Collections.Generic;

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

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