11 lines
230 B
C#
11 lines
230 B
C#
|
namespace ProxmoxConnector.Server.Domain.Abstractions
|
|||
|
{
|
|||
|
public interface IUserService
|
|||
|
{
|
|||
|
bool UserIsLoggedIn { get; }
|
|||
|
string GetUserId();
|
|||
|
string GetUserName();
|
|||
|
bool UserIsGuest();
|
|||
|
}
|
|||
|
}
|