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

26 lines
710 B
C#

using System.Collections.Generic;
namespace TINK.Model.User.Account
{
/// <summary>
/// Holds account data.
/// </summary>
public interface IAccount
{
/// <summary>Mail address.</summary>
string Mail { get; }
/// <summary>Password of the account.</summary>
string Pwd { get; }
/// <summary>Session cookie used to sign in to copri.</summary>
string SessionCookie { get; }
/// <summary>Debug level used to determine which features are available.</summary>
Permissions DebugLevel { get; }
/// <summary> Holds the group of the bike (TINK, Konrad, ...).</summary>
IEnumerable<string> Group { get; }
}
}