mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
19 lines
429 B
C#
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>();
|
|||
|
}
|
|||
|
}
|