using System; namespace IReaper.Statues{ interface IiReaperStatusStrip { string InfomationMessage { set; } string TaskMessage { set; } int Percentage { set;} void BeginAsyncWork(AsyncWork Work); } }