using System; using System.Collections.Generic; using System.Text; namespace SalsaModel.Scheduling { interface IAction { void Start(); void Update(double percent); void End(); string DescriptiveCode { get; } } }