use client/server model

This commit is contained in:
2024-07-21 09:53:17 +02:00
parent 005685ee2a
commit e88d1ff009
4 changed files with 9 additions and 8 deletions

View File

@@ -19,5 +19,5 @@ public interface IServer
bool IsLoggedIn(string secret);
[MemberNotNullWhen(true, nameof(Data))]
UserAccount? GetUser(string secret);
UserAccountBase? GetUser(string secret);
}