Removed use of crud helper. Refactored user and api key response. Removed unused request/response models
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
namespace Moonlight.Shared.Http.Responses.Admin.ApiKeys;
|
||||
|
||||
public class ApiKeyDetailResponse
|
||||
public class ApiKeyResponse
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Description { get; set; }
|
||||
@@ -1,6 +1,6 @@
|
||||
namespace Moonlight.Shared.Http.Responses.Admin.Users;
|
||||
|
||||
public class UserDetailResponse
|
||||
public class UserResponse
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Username { get; set; }
|
||||
@@ -1,6 +0,0 @@
|
||||
namespace Moonlight.Shared.Http.Responses.Assets;
|
||||
|
||||
public class FrontendAssetResponse
|
||||
{
|
||||
public string[] JavascriptFiles { get; set; }
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
namespace Moonlight.Shared.Http.Responses.ClientPlugins;
|
||||
|
||||
public class ClientPluginsResponse
|
||||
{
|
||||
public string[] Dlls { get; set; }
|
||||
public string CacheKey { get; set; }
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
namespace Moonlight.Shared.Http.Responses.PluginsStream;
|
||||
|
||||
public class PluginsAssetManifest
|
||||
{
|
||||
public string[] CssFiles { get; set; }
|
||||
public string[] JavascriptFiles { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user