Removed use of crud helper. Refactored user and api key response. Removed unused request/response models

This commit is contained in:
2025-04-05 14:56:26 +02:00
parent e1c0722fce
commit 7fa46ef245
11 changed files with 231 additions and 87 deletions

View File

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