1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 08:32:50 -05:00

[BEEEP] Add explicit error message when uploading the wrong license type (#1831)

This commit is contained in:
Oscar Hinton
2022-02-07 09:43:00 +01:00
committed by GitHub
parent 240b6e7463
commit cd61c826f9
5 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,8 @@
namespace Bit.Core.Enums
{
public enum LicenseType : byte
{
User = 0,
Organization = 1,
}
}