Try your search with a different keyword or use * as a wildcard.
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();
}