view Agendas/trunk/src/Agendas.Web/Models/HistoricoModel.cs @ 302:11dddcc9a862 tip

Historico de Eventos, no muestra bien la Url del Patrocinador.
author juanjose.montesdeocaarbos
date Tue, 14 Aug 2012 21:54:30 -0300
parents a8f7c41e3b47
children
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 Numero { get; set; }
        public string Tipo { get; set; }
		public string Titulo { get; set; }
		public string Fecha { get; set; }
		public string Wiki { get; set; }
		public IEnumerable<string> Ponentes { get; set; }
		public string Duracion { get; set; }
		public IEnumerable<PatrocinadorDto> Patrocinadores { get; set; }
	}

}