sharee.bike-App/SharedBusinessLogic/Model/User/Account/EmptyAccount.cs
2024-04-09 12:53:23 +02:00

21 lines
436 B
C#

using System.Collections.Generic;
namespace ShareeBike.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>();
}
}