Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 8, 2014 22:23
Show Gist options
  • Save Fhernd/9289043b6c434431be48 to your computer and use it in GitHub Desktop.
Save Fhernd/9289043b6c434431be48 to your computer and use it in GitHub Desktop.
Representa la enumeración MedioPublicitario.
// ===++===
//
// OrtizOL
//
// ===--===
/*============================================================
//
// Clase: MedioPublicitario.cs
//
// Propósito: Modelar los diferentes medios publicitarios.
//
============================================================*/
using System;
namespace N1_EleccionesCupi2.Modelo
{
/// <summary>
/// Enumeración con los tres medios publicitarios: Internet, Radio, Televisión.
/// </summary>
public enum MedioPublicitario
{
Internet = 1,
Radio = 2,
Television = 3
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment