2017-01-13 16:31:40 +01:00
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.ViewModels.Administration {
|
2017-05-27 16:22:25 +02:00
|
|
|
|
|
2017-01-13 16:31:40 +01:00
|
|
|
|
public class AdminViewModel {
|
|
|
|
|
|
public RoleInfo [] Roles { get; set; }
|
|
|
|
|
|
public int AdminCount { get; set; }
|
|
|
|
|
|
public bool YouAreAdmin { get; set; }
|
2017-05-27 16:22:25 +02:00
|
|
|
|
|
|
|
|
|
|
public int UserCount { get; set; }
|
2017-01-13 16:31:40 +01:00
|
|
|
|
}
|
2017-05-27 16:22:25 +02:00
|
|
|
|
}
|