namespace HaaSMiddleware.BackgroundThread.Tasks {
	internal interface IBackgroundTask {
		void StartTimer();
		void StopTimer();
	}
}