1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00
bitwarden-server/util/Setup/Enums/CloudRegion.cs

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

12 lines
183 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace Bit.Setup.Enums;
public enum CloudRegion
{
[Display(Name = "US")]
US = 0,
[Display(Name = "EU")]
EU = 1,
}