Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Web/Models/PerfilModel.cs @ 112:0bca45e1e664
Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
author | Nelo@Kenia.neluz.int |
---|---|
date | Sat, 11 Jun 2011 01:20:59 -0300 |
parents | |
children | 97e51ddeeb58 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Agendas/trunk/src/Agendas.Web/Models/PerfilModel.cs Sat Jun 11 01:20:59 2011 -0300 @@ -0,0 +1,22 @@ +using System.Collections.Generic; + +namespace AltNetHispano.Agendas.Web.Models +{ + public class PerfilIndexModel + { + public PerfilIndexModel() + { + Cuentas = new CuentaDto[] {}; + } + + public string DisplayName { get; set; } + + public IEnumerable<CuentaDto> Cuentas { get; set; } + } + + public class CuentaDto + { + public string IdentityProvider { get; set; } + public string UserName { get; set; } + } +} \ No newline at end of file