view Agendas/trunk/src/Agendas.Web/Models/HistoricoModel.cs @ 185:2d02adb79322

Se agrega fecha de termino de un Evento y se incluye la hora a la fecha de inicio. Se modifica la propiedad Fecha del Evento, renombrandola FechaInicio. En el ModelView se agrega propiedades Duración y Hora del Evento cuando es Modificado, Nuevo y Agendado. Las fechas ingresadas son creadas en sistema UTC Queda pendiente Agregar duración a Google Calendar.
author alabra
date Tue, 09 Aug 2011 01:04:27 -0400
parents c99636fbdc5f
children 11545cc95491
line wrap: on
line source

using System;
using System.Collections.Generic;

namespace AltNetHispano.Agendas.Web.Models
{
	public class HistoricoIndexModel
	{
		public IEnumerable<HistoricoDto> Items { get; set; }
	}

	public class HistoricoDto
	{
		public string Id { get; set; }
        public string Numero { get; set; }
        public string Tipo { get; set; }
		public string Titulo { get; set; }
		public string Fecha { get; set; }
		public string Wiki { get; set; }
		public string Ponente { get; set; }
		public string Duracion { get; set; }
	}

}