Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ===++===
- //
- // OrtizOL
- //
- // ===--===
- /*============================================================
- //
- // Enumeración: TipoProducto.cs
- //
- // Propósito: Representar los tipos de productos que se
- // venden en la tienda.
- //
- ============================================================*/
- using System;
- namespace LaTienda.Modelo
- {
- /// <summary>
- /// Representa los tipos de productos que se venden en la tienda.
- /// </summary>
- public enum TipoProducto
- {
- Drogueria = 1,
- Papeleria = 2,
- Supermercado = 3
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement