1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-11 16:18:14 -05:00
2023-07-31 13:14:33 -04:00

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,
}