sharee.bike-App/TINKLib/Model/User/IUser.cs
2021-05-13 20:03:07 +02:00

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; }
}
}