//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace Microsoft.Internal.GamesTest.Xbox
{
///
/// An enumeration describing each operating system on
/// the Xbox.
///
public enum XboxOperatingSystem
{
///
/// Represents the "System" operating system. This is also sometimes known as the "SRA".
///
System,
///
/// Represents the "Title" operating system. This is also sometimes known as the "ERA".
///
Title
}
}