sharee.bike-App/TINKLib/Model/User/Account/EmptyAccount.cs
2021-05-13 20:03:07 +02:00

19 lines
429 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 string SessionCookie => null;
public Permissions DebugLevel => Permissions.None;
public IEnumerable<string> Group => new List<string>();
}
}