yavsc/Yavsc/ViewModels/Manage/IndexViewModel.cs

42 lines
1 KiB
C#
Raw Normal View History

2016-05-17 18:22:18 +02:00
using System.Collections.Generic;
using Microsoft.AspNet.Identity;
2016-11-06 02:03:36 +01:00
using Yavsc.Model.Bank;
2016-05-17 18:22:18 +02:00
using Yavsc.Models;
namespace Yavsc.ViewModels.Manage
{
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 Activity Activity { get; set; }
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-05-17 18:22:18 +02:00
}
}