namespace Nop.Services.ScheduleTasks; /// /// Interface that should be implemented by each task /// public partial interface IScheduleTask { /// /// Executes a task /// /// A task that represents the asynchronous operation Task ExecuteAsync(); }