Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Models/HistoricoModel.cs @ 145:e6e6bfb1da9e
En la edición de un evento (nuevo, propuesta, modificación), el ponente se selecciona desde un combo.
author | Nelo@Guinea.neluz.int |
---|---|
date | Mon, 01 Aug 2011 11:42:24 -0300 |
parents | 8fa58a79656a |
children | c99636fbdc5f |
rev | line source |
---|---|
119 | 1 using System; |
2 using System.Collections.Generic; | |
3 | |
4 namespace AltNetHispano.Agendas.Web.Models | |
5 { | |
6 public class HistoricoIndexModel | |
7 { | |
8 public IEnumerable<HistoricoDto> Items { get; set; } | |
9 } | |
10 | |
11 public class HistoricoDto | |
12 { | |
13 public string Id { get; set; } | |
14 public string Titulo { get; set; } | |
15 public string Fecha { get; set; } | |
16 public string Wiki { get; set; } | |
17 public string Ponente { get; set; } | |
18 } | |
19 | |
20 } |