This commit is contained in:
Paul Schneider 2026-02-14 16:54:27 +00:00
commit 45514010f2
3505 changed files with 154 additions and 523 deletions

View file

@ -1,11 +0,0 @@
namespace Yavsc.ViewModels.Administration {
public class AdminViewModel {
public RoleInfo [] Roles { get; set; }
public int AdminCount { get; set; }
public bool YouAreAdmin { get; set; }
public int UserCount { get; set; }
}
}

View file

@ -1,9 +0,0 @@
namespace Yavsc.ViewModels.Administration
{
public class RoleInfo
{
public string Id { get; set; }
public string Name { get; set; }
public int UserCount { get; set; }
}
}

View file

@ -1,15 +0,0 @@
using Yavsc.Abstract.Identity;
namespace Yavsc.ViewModels.Administration
{
public class RoleUserCollection
{
public RoleUserCollection()
{
}
public string Id { get; set; }
public string Name { get; set; }
public UserInfo[] Users { get; set; }
}
}