12 lines
224 B
C#
12 lines
224 B
C#
namespace VideoGameQuotes.Api {
|
|
/// <summary>
|
|
/// The region for which a game is associated
|
|
/// </summary>
|
|
public enum Region {
|
|
Unknown = 0,
|
|
UnitedStates = 1,
|
|
Japan = 2,
|
|
Europe = 3,
|
|
Other = 4
|
|
}
|
|
} |