Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          hangman-06-abstract/hangman.cs - The class Puzzle.Lecture 1 - slide 22 : 22
Program 1

abstract class Puzzle {
  
  public abstract string Category{
    get;
  } 

  public abstract string PuzzlePhrase{
    get;
  } 

  public abstract int NumberOfCharsToGuess();
}