comparison 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
comparison
equal deleted inserted replaced
11:9d6b28a696d1 12:05996fa19e04
1 using System; 1 using System;
2 using System.Collections.Generic;
2 3
3 namespace AltNetHispano.Agendas.Domain 4 namespace AltNetHispano.Agendas.Domain
4 { 5 {
5 public abstract class Evento 6 public class Evento
6 { 7 {
7 public Guid Id { get; set; } 8 public Guid Id { get; set; }
8 public string Titulo { get; set; } 9 public string Titulo { get; set; }
9 public DateTime? Fecha { get; set; } 10 public DateTime? Fecha { get; set; }
10 public string Sintesis { get; set; } 11 public string Sintesis { get; set; }
11 } 12 public string Ponente { get; set; }
13 public IList<string> Enlaces { get; set; }
14 }
12 } 15 }