comparison Agendas/trunk/src/Agendas.Web/Models/HistoricoModel.cs @ 119:8fa58a79656a

Historico
author Nelo@Kenia.neluz.int
date Wed, 22 Jun 2011 09:49:07 -0300
parents
children c99636fbdc5f
comparison
equal deleted inserted replaced
118:b74734a1a755 119:8fa58a79656a
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 }