view Agendas/trunk/src/Agendas.Domain/Evento.cs @ 18:8ed4a806ebe0

corrección de excepeción lanzada si no hay usuario autenticado al proponer un evento
author nelo@MTEySS.neluz.int
date Mon, 14 Mar 2011 00:26:44 -0300
parents 05996fa19e04
children 41b283d27e3e
line wrap: on
line source

using System;
using System.Collections.Generic;

namespace AltNetHispano.Agendas.Domain
{
	public class Evento
	{
		public Guid Id { get; set; }
		public string Titulo { get; set; }
		public DateTime? Fecha { get; set; }
		public string Sintesis { get; set; }
        public string Ponente { get; set; }
        public IList<string> Enlaces { get; set; }
    }
}