Mercurial > altnet-hispano
comparison 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 |
comparison
equal
deleted
inserted
replaced
111:90ce239cfa6d | 112:0bca45e1e664 |
---|---|
1 using System.Collections.Generic; | |
2 | |
3 namespace AltNetHispano.Agendas.Web.Models | |
4 { | |
5 public class PerfilIndexModel | |
6 { | |
7 public PerfilIndexModel() | |
8 { | |
9 Cuentas = new CuentaDto[] {}; | |
10 } | |
11 | |
12 public string DisplayName { get; set; } | |
13 | |
14 public IEnumerable<CuentaDto> Cuentas { get; set; } | |
15 } | |
16 | |
17 public class CuentaDto | |
18 { | |
19 public string IdentityProvider { get; set; } | |
20 public string UserName { get; set; } | |
21 } | |
22 } |