view Agendas/trunk/src/Agendas.Domain/Evento.cs @ 36:65bbf1ab2b24

cuando se modifica un evento, también debe ser publicada dicha modificación
author nelo@MTEySS.neluz.int
date Thu, 17 Mar 2011 17:03:05 -0300
parents 41b283d27e3e
children 3c5657d99727
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 Ponente Ponente { get; set; }
        public IList<string> Enlaces { get; set; }
    }
}