Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 2, 2015 16:33
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/81f77c0a254326cb3a75 to your computer and use it in GitHub Desktop.
Save Fhernd/81f77c0a254326cb3a75 to your computer and use it in GitHub Desktop.
Enumeración `Clase`.
// ===++===
//
// OrtizOL - xCSw
//
// Proyecto: Cupi2.NET
//
// ===--===
/*============================================================
//
// Clase(s): Clase (Enumeración).
//
// 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>
/// Representa los tipos de clase disponibles en un vuelo.
/// </summary>
public enum Clase
{
Economica = 1,
Ejecutiva = 2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment