comparison Agendas/trunk/src/Agendas.Domain/Evento.cs @ 2:c03560ae4762

Test de Crud para la agenda
author nelopauselli
date Sat, 22 Jan 2011 20:21:31 -0300
parents 6bb4ab4c0611
children 5f007e266509
comparison
equal deleted inserted replaced
1:6bb4ab4c0611 2:c03560ae4762
1 using System; 1 using System;
2 2
3 namespace AltNetHispano.Agendas.Domain 3 namespace AltNetHispano.Agendas.Domain
4 { 4 {
5 public 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; }
9 public DateTime Fecha { get; set; }
10 public string Sintesis { get; set; }
11
8 } 12 }
9 } 13 }