view Agendas/trunk/src/Agendas.Web/Models/HistoricoModel.cs @ 138:62791999ad01

Agregando relación entre Evento y Patrocinador
author nelopauselli
date Thu, 28 Jul 2011 10:13:28 -0300
parents 8fa58a79656a
children c99636fbdc5f
line wrap: on
line source

using System;
using System.Collections.Generic;

namespace AltNetHispano.Agendas.Web.Models
{
	public class HistoricoIndexModel
	{
		public IEnumerable<HistoricoDto> Items { get; set; }
	}

	public class HistoricoDto
	{
		public string Id { get; set; }
		public string Titulo { get; set; }
		public string Fecha { get; set; }
		public string Wiki { get; set; }
		public string Ponente { get; set; }
	}

}