mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 18:03:11 +08:00
14 lines
305 B
C#
14 lines
305 B
C#
namespace Bit.Core.Enums
|
|
{
|
|
public static class BitwardenClient
|
|
{
|
|
public const string
|
|
Web = "web",
|
|
Browser = "browser",
|
|
Desktop = "desktop",
|
|
Mobile = "mobile",
|
|
Cli = "cli",
|
|
DirectoryConnector = "connector";
|
|
}
|
|
}
|