using TINK.Model.User.Account; namespace TINK.Model.User { public interface IUser { /// Holds a value indicating whether user is logged in or not. bool IsLoggedIn { get; } /// Holds the mail address. string Mail { get; } /// Holds the debug level. Permissions DebugLevel { get; } } }