1
0
mirror of https://github.com/bitwarden/server synced 2026-01-16 15:33:19 +00:00
Files
server/src/Core/Services/Play/Implementations/NeverPlayIdServices.cs
2026-01-08 12:18:14 +01:00

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;
}
}