using static System.Console;
using System.Collections.Generic;
var taffy = new List<string>();
WriteLine("Welcome to Sweet's Paradise");
var taffy1 = new Taffy();
var taffy2 = new Taffy();
var taffy3 = new Taffy();
taffy1.Name = "Chocolate";
taffy3.Name = "Strawberry";
WriteLine($"How many bars of {taffy1.Sku} would you like?");
var taffy1Quantity = ReadLine();
var t1Quantity = int.Parse(taffy1Quantity);
int t1Cost = taffy1.Price * t1Quantity;
WriteLine($"{taffy1.Name} costs ${t1Cost}");
public int Sku {get;set;}
public string Name {get;set;}
public int Price {get;set;}
public int Quantity {get;set;}