using System.Collections.Generic;
namespace TINK.Model.User.Account
{
/// Represents an empty account.
public class EmptyAccount : IAccount
{
public string Mail => null;
public string Pwd => null;
public bool IsAgbAcknowledged => false;
public string SessionCookie => null;
public Permissions DebugLevel => Permissions.None;
public IEnumerable Group => new List();
}
}