using Abp.Configuration.Startup;
namespace Abp.BackgroundJobs
{
///
/// Used to configure background job system.
///
public interface IBackgroundJobConfiguration
{
///
/// Used to enable/disable background job execution.
///
bool IsJobExecutionEnabled { get; set; }
///
/// Gets the ABP configuration object.
///
IAbpStartupConfiguration AbpConfiguration { get; }
}
}