sharee.bike-App/TINKLib/Model/User/Account/IAccount.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

29 lines
723 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>True if user acknowleged agbs.</summary>
bool IsAgbAcknowledged { 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; }
}
}