2016-05-17 18:22:18 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using Microsoft.AspNet.Identity;
|
|
|
|
|
|
using Yavsc.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.ViewModels.Manage
|
|
|
|
|
|
{
|
|
|
|
|
|
public class IndexViewModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public string UserName {get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public bool HasPassword { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public IList<UserLoginInfo> Logins { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string PhoneNumber { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public bool TwoFactor { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public bool BrowserRemembered { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Activity Activity { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public long PostsCounter { get; set; }
|
|
|
|
|
|
|
2016-07-29 13:37:46 +02:00
|
|
|
|
public AccountBalance Balance { get; set; }
|
2016-05-17 18:22:18 +02:00
|
|
|
|
|
|
|
|
|
|
public long ActiveCommandCount { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public bool HasDedicatedCalendar { get; set; }
|
2016-06-25 21:08:10 +02:00
|
|
|
|
|
|
|
|
|
|
public IEnumerable<string> Roles { get; set; }
|
2016-05-17 18:22:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|