mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
17 lines
410 B
C#
17 lines
410 B
C#
|
using TINK.Model.User.Account;
|
|||
|
|
|||
|
namespace TINK.Model.User
|
|||
|
{
|
|||
|
public interface IUser
|
|||
|
{
|
|||
|
/// <summary> Holds a value indicating whether user is logged in or not.</summary>
|
|||
|
bool IsLoggedIn { get; }
|
|||
|
|
|||
|
/// <summary> Holds the mail address. </summary>
|
|||
|
string Mail { get; }
|
|||
|
|
|||
|
/// <summary>Holds the debug level.</summary>
|
|||
|
Permissions DebugLevel { get; }
|
|||
|
}
|
|||
|
}
|