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