using System; using System.Collections.Generic; using System.Text; namespace PokerTournamentManager.Framework { public class Round { public event EventHandler RoundOver; public Timer Timer { get { throw new System.NotImplementedException(); } set { } } public GameType GameType { get { throw new System.NotImplementedException(); } set { } } public BuyInOptions BuyInOptions { get { throw new System.NotImplementedException(); } set { } } } }