Removed use of crud helper. Refactored user and api key response. Removed unused request/response models
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace Moonlight.Shared.Http.Responses.Admin.ApiKeys;
|
||||
|
||||
public class ApiKeyResponse
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string PermissionsJson { get; set; } = "[]";
|
||||
public DateTime ExpiresAt { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user