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 all entries /// /// Task> GetJobLogsAsync(); /// /// Return a entry for the given Id /// /// /// Task GetJobLogAsync(int jobLogId); } }