Mercurial > altnet-hispano
annotate 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 |
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 } |