view Agendas/trunk/src/Agendas.Domain/Evento.cs @ 12:05996fa19e04

Unificamos Van y Cafe en Evento Agenda.Publicar con los valores como parámetros independientes
author nelo@MTEySS.neluz.int
date Sun, 13 Mar 2011 19:50:17 -0300
parents 49b572535156
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; }
    }
}