Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Models/HistoricoModel.cs @ 130:0ea32a748453
Se termina el publicador via el calendario de google, además se realizan las pruebas unitarias.
author | alabra |
---|---|
date | Sun, 10 Jul 2011 18:50:11 -0400 |
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 } |