mirror of
https://github.com/C9Glax/tranga.git
synced 2025-09-10 20:08:19 +02:00
Descriptions for Records and DTOs
This commit is contained in:
@@ -10,9 +10,9 @@ namespace API.Schema.LibraryContext.LibraryConnectors;
|
||||
public abstract class LibraryConnector : Identifiable
|
||||
{
|
||||
public LibraryType LibraryType { get; init; }
|
||||
public string BaseUrl { get; init; }
|
||||
public string Auth { get; init; }
|
||||
protected ILog Log { get; init; }
|
||||
[StringLength(256)] [Url] public string BaseUrl { get; init; }
|
||||
[StringLength(256)] public string Auth { get; init; }
|
||||
[NotMapped] protected ILog Log { get; init; }
|
||||
|
||||
protected LibraryConnector(LibraryType libraryType, string baseUrl, string auth)
|
||||
: base()
|
||||
|
Reference in New Issue
Block a user