Head First C# Code: Chapter 15
Objectville Promotion
StarbuzzData.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _5_Objectville_Promotion
{
public class StarbuzzData
{
public string Name { get; set; }
public Drink FavoriteDrink { get; set; }
public int MoneySpent { get; set; }
public int Visits { get; set; }
}
}







