2016-05-17 18:22:18 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using Microsoft.AspNet.Identity;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.ViewModels.Manage
|
|
|
|
|
|
{
|
2017-01-16 01:20:39 +01:00
|
|
|
|
using Models.Bank;
|
2017-01-13 16:31:40 +01:00
|
|
|
|
using Models;
|
|
|
|
|
|
using Models.Workflow;
|
2016-05-17 18:22:18 +02:00
|
|
|
|
public class IndexViewModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public string UserName {get; set; }
|
|
|
|
|
|
|
2016-10-23 01:31:09 +02:00
|
|
|
|
public string Avatar { get; set; }
|
|
|
|
|
|
|
2016-05-17 18:22:18 +02:00
|
|
|
|
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; }
|
|
|
|
|
|
|
2017-01-13 16:31:40 +01:00
|
|
|
|
public List<UserActivity> Activity { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public bool HaveProfessionalSettings { get; set; }
|
2016-05-17 18:22:18 +02:00
|
|
|
|
|
|
|
|
|
|
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-10-23 01:31:09 +02:00
|
|
|
|
|
|
|
|
|
|
public string FullName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string PostalAddress { get; set; }
|
2016-11-06 02:03:36 +01:00
|
|
|
|
|
|
|
|
|
|
public BankIdentity BankInfo { get; set; }
|
2016-11-30 11:05:10 +01:00
|
|
|
|
public long DiskQuota { get; set; }
|
|
|
|
|
|
public long DiskUsage { get; set; }
|
2016-05-17 18:22:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|