annotate Agendas/trunk/src/Agendas.Domain/Ponente.cs @ 35:6910b2116df2
Eliminación de archivo vacio
author |
nelo@MTEySS.neluz.int |
date |
Thu, 17 Mar 2011 16:59:43 -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 } |