view Agendas/trunk/src/Agendas.Domain/Van.cs @ 1:6bb4ab4c0611

Tests de Crud para repositorio de Vans
author nelopauselli
date Sat, 22 Jan 2011 19:50:32 -0300
parents 3f7dbb633b71
children c03560ae4762
line wrap: on
line source

using System;
using System.Collections.Generic;

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

		public string Ponente { get; set; }

		public DateTime Fecha { get; set; }

		public string Sintesis { get; set; }

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