comparison Agendas/trunk/src/Agendas.Domain/Evento.cs @ 4:49b572535156

proponer van publicar van propuesta comportamiento ante excepcion en publicador
author nelopauselli
date Tue, 08 Feb 2011 00:08:49 -0300
parents 5f007e266509
children 05996fa19e04
comparison
equal deleted inserted replaced
3:5f007e266509 4:49b572535156
4 { 4 {
5 public abstract class Evento 5 public abstract class Evento
6 { 6 {
7 public Guid Id { get; set; } 7 public Guid Id { get; set; }
8 public string Titulo { get; set; } 8 public string Titulo { get; set; }
9 public DateTime Fecha { get; set; } 9 public DateTime? Fecha { get; set; }
10 public string Sintesis { get; set; } 10 public string Sintesis { get; set; }
11 } 11 }
12 } 12 }