namespace Bit.Core { public static class ExternalLinksConstants { public const string HELP_CENTER = "https://bitwarden.com/help/"; public const string HELP_ABOUT_ORGANIZATIONS = "https://bitwarden.com/help/about-organizations/"; public const string HELP_FINGERPRINT_PHRASE = "https://bitwarden.com/help/fingerprint-phrase/"; public const string PRIVACY_POLICY = "https://bitwarden.com/privacy/"; /// /// Link to go to settings website. Requires to pass website URL as parameter. /// public const string WEB_VAULT_SETTINGS_FORMAT = "{0}/#/settings"; /// /// Link to go to individual vault import page. Requires to pass vault URL as parameter. /// public const string WEB_VAULT_TOOLS_IMPORT_FORMAT = "{0}/#/tools/import"; /// /// General website, not in the full format of a URL given that this is used as parameter of string resources to be shown to the user. /// public const string BITWARDEN_WEBSITE = "bitwarden.com"; } }