| interfaces/explicit-interface-member-implementation/gameobject.cs - The Interface IGameObject with a conflicting Value property. | Lecture 8 - slide 18 : 37 Program 2  | 
public enum GameObjectMedium {Paper, Plastic, Electronic}
public interface IGameObject{
  int Value{
    get;
  }
  GameObjectMedium Medium{
    get;
  }
}