mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
25 lines
710 B
C#
25 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; }
|
|
}
|
|
}
|