Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Web/Models/PersonaModel.cs @ 257:730b80afa70d
Ticket #191: Perfil de Usuarios
author | juanjose.montesdeocaarbos |
---|---|
date | Wed, 19 Oct 2011 09:19:20 -0300 |
parents | 222362c29416 |
children | e6c041d8e1bf |
comparison
equal
deleted
inserted
replaced
256:12d72efb43ca | 257:730b80afa70d |
---|---|
50 public class PersonaDto | 50 public class PersonaDto |
51 { | 51 { |
52 public Guid Id { get; set; } | 52 public Guid Id { get; set; } |
53 public string Nombre { get; set; } | 53 public string Nombre { get; set; } |
54 } | 54 } |
55 | |
56 public class PersonaViewModel | |
57 { | |
58 [HiddenInput(DisplayValue = false)] | |
59 public string Id { get; set; } | |
60 | |
61 [HiddenInput] | |
62 public string Nombre { get; set; } | |
63 | |
64 [HiddenInput] | |
65 public string Twitter { get; set; } | |
66 | |
67 [HiddenInput] | |
68 public string EMail { get; set; } | |
69 | |
70 [HiddenInput] | |
71 public string Blog { get; set; } | |
72 } | |
55 } | 73 } |