Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 2, 2015 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/cf9e1f14624f5a4f197b to your computer and use it in GitHub Desktop.
Save Fhernd/cf9e1f14624f5a4f197b to your computer and use it in GitHub Desktop.
Enumeración `UbicacionSilla`.
// ===++===
//
// OrtizOL - xCSw
//
// Proyecto: Cupi2.NET
//
// ===--===
/*============================================================
//
// Enumeración(es): UbicacionSilla.
//
// Propósito: Representar los códigos y valores de las clases
// ejecutiva y económica que ofrece la avión.
//
// Original: [No definida en el proyecto original.]
//
============================================================*/
namespace ElAvión.Modelo
{
/// <summary>
/// Enumera los diferentes tipos de ubicación para una silla en un avión.
/// </summary>
public enum UbicacionSilla
{
Ventana = 1,
Central = 2,
Pasillo = 3
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment