using System; namespace VideoGameQuotes.Api { /// /// The region for which a game is associated /// [Flags] public enum Region { Unknown = 0, NorthAmerica = 1, Japan = 2, Europe = 4, PAL = 8, Australia = 16, Korea = 32 } }