Skip to content
Snippets Groups Projects
Product.cs 952 B
Newer Older
AFONY10's avatar
efe
AFONY10 committed
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


// This is the dummy data for the products
namespace ATB_ChainPattern.DummyData
{
    public class Product
    {
        public ProductType ProductType { get; set; }
        public ProductName ProductName { get; set; }
    }

    public enum ProductType
    {
        Forex,
        Commodity,
        Stock,
        Crypto,
        OtherCurrency
    }

    public enum ProductName
    {
        // Stocks
        TeslaStock,
        AppleStock,
        MicrosoftStock,
        GoogleStock,
        // Commodities
        Gold,
        Silver,
        Bronze,

        // Forex
        EURUSD,
        GBPUSD,
        USDJPY,
        USDCAD, // Not worth buying

        // Crypto
        Bitcoin, // Worth buying
        Ethereum, // Worth buying
        Ripple, // Not worth buying
        Starknet // Not worth buying

    }

}