Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 17, 2014 00:47
Show Gist options
  • Save Fhernd/19d5e56be7235269862a to your computer and use it in GitHub Desktop.
Save Fhernd/19d5e56be7235269862a to your computer and use it in GitHub Desktop.
Representa la entidad CategoriaJuego.
// ===++===
//
// OrtizOL
//
// ===--===
/*============================================================
//
// Clase: CategoriaJuego.cs
//
// Propósito: Modelar las diferentes categorías de los
// juegos.
//
============================================================*/
namespace JuegosCelulares.Modelo
{
/// <summary>
/// Enumeración con las categorías de los juegos.
/// </summary>
public enum CategoriaJuego
{
Ninguna = 0,
Aventura = 1,
Accion = 2,
Deporte = 3,
Velocidad = 4
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment