mirror of
https://github.com/bitwarden/server
synced 2026-01-16 15:33:19 +00:00
16 lines
266 B
C#
16 lines
266 B
C#
namespace Bit.Core.Services;
|
|
|
|
public class NeverPlayIdServices : IPlayIdService
|
|
{
|
|
public string? PlayId
|
|
{
|
|
get => null;
|
|
set { }
|
|
}
|
|
|
|
public bool InPlay(out string playId)
|
|
{
|
|
playId = string.Empty;
|
|
return false;
|
|
}
|
|
} |