using System; namespace SalsaModel { public interface ITiming { int Beat(); int GlobalBeat(); double Percent(); int StepNumber(); } }