Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Models/HistoricoModel.cs @ 210:5cc7bc973ffc
Ticket 175: Que al confirmar un evento, muestre una pantalla sugiriendo el servicio de scheduler.
author | juanjose.montesdeocaarbos |
---|---|
date | Fri, 26 Aug 2011 07:26:29 -0300 |
parents | c99636fbdc5f |
children | 11545cc95491 |
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 string Ponente { get; set; } public string Duracion { get; set; } } }