Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Models/HistoricoModel.cs @ 126:6012f2becf97
Se agrega instalación de nuget package para el calendario de google.
author | alabra |
---|---|
date | Tue, 28 Jun 2011 23:35:22 -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 } |