Remove APISerializable and APIJsonSerializer

This commit is contained in:
2024-12-16 18:55:52 +01:00
parent 77c5903cf1
commit 87274aca19
14 changed files with 9 additions and 134 deletions

View File

@ -4,7 +4,7 @@ using Microsoft.EntityFrameworkCore;
namespace API.Schema.LibraryConnectors;
[PrimaryKey("LibraryConnectorId")]
public abstract class LibraryConnector(string libraryConnectorId, LibraryType libraryType, string baseUrl, string auth) : APISerializable
public abstract class LibraryConnector(string libraryConnectorId, LibraryType libraryType, string baseUrl, string auth)
{
[MaxLength(64)]
public string LibraryConnectorId { get; } = libraryConnectorId;