Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          interfaces/playingcard-die/gameobject.cs - The interface IGameObject.Lecture 8 - slide 13 : 37
Program 1

public enum GameObjectMedium {Paper, Plastic, Electronic}

public interface IGameObject{

  int GameValue{
    get;
  }

  GameObjectMedium Medium{
    get;
  }
}