Files
server/src/Core/Enums/BitwardenClient.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
286 B
C#
Raw Normal View History

namespace Bit.Core.Enums;
2022-08-29 16:06:55 -04:00
public static class BitwardenClient
{
public const string
Web = "web",
Browser = "browser",
Desktop = "desktop",
Mobile = "mobile",
Cli = "cli",
DirectoryConnector = "connector",
Send = "send";
}