sharee.bike-App/SharedBusinessLogic/Model/User/Account/IAccount.cs
2024-04-09 12:53:23 +02:00

29 lines
737 B
C#

using System.Collections.Generic;
namespace ShareeBike.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 (ShareeBike, Citybike, ...).</summary>
IEnumerable<string> Group { get; }
}
}