oqtane.framework/Oqtane.Client/Services/Interfaces/IJobLogService.cs

14 lines
262 B
C#

using Oqtane.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Oqtane.Services
{
public interface IJobLogService
{
Task<List<JobLog>> GetJobLogsAsync();
Task<JobLog> GetJobLogAsync(int jobLogId);
}
}