yavsc/Yavsc/ViewModels/Manage/IndexViewModel.cs
Paul Schneider a528ca52fe refabrique:
* Nouvel espace de noms: Yavsc.Interfaces
* Nouvelle interface : ILifeTime
* Factorisation
2016-07-29 13:37:46 +02:00

33 lines
817 B
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
public AccountBalance Balance { get; set; }
public long ActiveCommandCount { get; set; }
public bool HasDedicatedCalendar { get; set; }
public IEnumerable<string> Roles { get; set; }
}
}