comparison Agendas/trunk/src/Agendas.Domain/Evento.cs @ 24:41b283d27e3e

Ponentes como entidad Agenda no es una entidad persistente (por ahora)
author nelo@MTEySS.neluz.int
date Tue, 15 Mar 2011 07:49:53 -0300
parents 05996fa19e04
children 3c5657d99727
comparison
equal deleted inserted replaced
23:a85674a7aa7a 24:41b283d27e3e
7 { 7 {
8 public Guid Id { get; set; } 8 public Guid Id { get; set; }
9 public string Titulo { get; set; } 9 public string Titulo { get; set; }
10 public DateTime? Fecha { get; set; } 10 public DateTime? Fecha { get; set; }
11 public string Sintesis { get; set; } 11 public string Sintesis { get; set; }
12 public string Ponente { get; set; } 12 public Ponente Ponente { get; set; }
13 public IList<string> Enlaces { get; set; } 13 public IList<string> Enlaces { get; set; }
14 } 14 }
15 } 15 }