Implemented admin crud ui for users page. Fixed some smaller issues

This commit is contained in:
Masu Baumgartner
2024-10-06 20:44:18 +02:00
parent cf25e4e1e6
commit f48e5d4b19
7 changed files with 93 additions and 12 deletions

View File

@@ -0,0 +1,8 @@
namespace Moonlight.Shared.Http.Responses.Admin.Users;
public class UserDetailResponse
{
public int Id { get; set; }
public string Username { get; set; }
public string Email { get; set; }
}