mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
12 lines
183 B
C#
12 lines
183 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Setup.Enums;
|
|
|
|
public enum CloudRegion
|
|
{
|
|
[Display(Name = "US")]
|
|
US = 0,
|
|
[Display(Name = "EU")]
|
|
EU = 1,
|
|
}
|