view Agendas/trunk/src/Agendas.Web/Models/HistoricoModel.cs @ 126:6012f2becf97

Se agrega instalación de nuget package para el calendario de google.
author alabra
date Tue, 28 Jun 2011 23:35:22 -0400
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; }
	}

}