2018-07-16 02:36:44 +02:00
|
|
|
using Yavsc.Abstract.Identity;
|
2017-01-13 16:31:40 +01:00
|
|
|
|
|
|
|
|
namespace Yavsc.ViewModels.Administration
|
|
|
|
|
{
|
|
|
|
|
public class RoleUserCollection
|
|
|
|
|
{
|
|
|
|
|
public RoleUserCollection()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public UserInfo[] Users { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|