Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ===++===
- //
- // 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
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement