Rename TBaseObject -> GlobalBase

Remove Notification and Library Connectors from GlobalBase
This commit is contained in:
2023-08-01 18:24:19 +02:00
parent c45e4ddf90
commit e4086a8892
14 changed files with 66 additions and 86 deletions

View File

@ -4,7 +4,7 @@ using Logging;
namespace Tranga.LibraryConnectors;
public abstract class LibraryConnector : TBaseObject
public abstract class LibraryConnector : GlobalBase
{
public enum LibraryType : byte
{
@ -18,7 +18,7 @@ public abstract class LibraryConnector : TBaseObject
// ReSharper disable once MemberCanBeProtected.Global
public string auth { get; } //Base64 encoded, if you use your password everywhere, you have problems
protected LibraryConnector(string baseUrl, string auth, LibraryType libraryType, TBaseObject clone) : base(clone)
protected LibraryConnector(string baseUrl, string auth, LibraryType libraryType, GlobalBase clone) : base(clone)
{
this.baseUrl = baseUrl;
this.auth = auth;