yavsc/Yavsc/ViewModels/Manage/IndexViewModel.cs

48 lines
1.3 KiB
C#
Raw Normal View History

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;
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; }
public List<UserActivity> Activity { get; set; }
public bool HaveProfessionalSettings { get; set; }
public bool HaveActivityToConfigure { get; set; }
2016-05-17 18:22:18 +02:00
public long PostsCounter { get; set; }
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
}
}