Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Domain/Ponente.cs @ 26:71b02443450a
UI de Propuestas de VANs
author | nelo@MTEySS.neluz.int |
---|---|
date | Tue, 15 Mar 2011 08:45:00 -0300 |
parents | 41b283d27e3e |
children | 3c5657d99727 |
rev | line source |
---|---|
24 | 1 using System; |
2 | |
3 namespace AltNetHispano.Agendas.Domain | |
4 { | |
5 public class Ponente { | |
6 public Guid Id { get; set; } | |
7 | |
8 public string Nombre { get; set; } | |
9 | |
10 public string Mail { get; set; } | |
11 | |
12 public string Twitter { get; set; } | |
13 | |
14 public string Blog { get; set; } | |
15 | |
16 } | |
17 } |