sharee.bike-App/SharedBusinessLogic/Model/User/Account/EmptyAccount.cs

21 lines
436 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
using System.Collections.Generic;
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Model.User.Account
2021-05-13 20:03:07 +02:00
{
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
}