sharee.bike-App/TINKLib/Model/User/IUser.cs

17 lines
365 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
using TINK.Model.User.Account;
namespace TINK.Model.User
{
2022-09-06 16:08:19 +02:00
public interface IUser
{
/// <summary> Holds a value indicating whether user is logged in or not.</summary>
bool IsLoggedIn { get; }
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Holds the mail address. </summary>
string Mail { get; }
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary>Holds the debug level.</summary>
Permissions DebugLevel { get; }
}
2021-05-13 20:03:07 +02:00
}