mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
20 lines
478 B
C#
20 lines
478 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TINK.Model.User.Account
|
|
{
|
|
/// <summary> Represents an empty account.</summary>
|
|
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<string> Group => new List<string>();
|
|
}
|
|
}
|