sharee.bike-App/TINKLib/Model/User/Account/EmptyAccount.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

21 lines
430 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>();
}
}