mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-10 05:13:17 +00:00
31 lines
582 B
C#
31 lines
582 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core
|
|
{
|
|
public class AuthService
|
|
{
|
|
private static AuthService _instance;
|
|
|
|
private AuthService() { }
|
|
|
|
public static AuthService Instance
|
|
{
|
|
get
|
|
{
|
|
if(_instance == null)
|
|
{
|
|
_instance = new AuthService();
|
|
}
|
|
|
|
return _instance;
|
|
}
|
|
}
|
|
|
|
public bool Authenticated { get; set; }
|
|
}
|
|
}
|