2021-05-13 20:03:07 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace TINK.Model.User.Account
|
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Represents an empty account.</summary>
|
|
|
|
|
public class EmptyAccount : IAccount
|
|
|
|
|
{
|
|
|
|
|
public string Mail => null;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public string Pwd => null;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public bool IsAgbAcknowledged => false;
|
2022-01-04 18:59:16 +01:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public string SessionCookie => null;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public Permissions DebugLevel => Permissions.None;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public IEnumerable<string> Group => new List<string>();
|
|
|
|
|
}
|
2021-05-13 20:03:07 +02:00
|
|
|
|
}
|