using Oqtane.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace Oqtane.Services { /// /// Service to read the job schedule log /// public interface IJobLogService { /// /// Return a list of entries /// /// /// Task> GetJobLogsAsync(int jobId); /// /// Return a entry for the given Id /// /// /// Task GetJobLogAsync(int jobLogId); } }