mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 06:03:12 +08:00
10 lines
227 B
C#
10 lines
227 B
C#
namespace Bit.Seeder.Data.Enums;
|
|
|
|
/// <summary>
|
|
/// Geographic region for company headquarters.
|
|
/// </summary>
|
|
public enum GeographicRegion
|
|
{
|
|
NorthAmerica, Europe, AsiaPacific, LatinAmerica, MiddleEast, Africa, Global
|
|
}
|