using PartSource.Automation.Jobs.Interfaces; using PartSource.Automation.Models; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace PartSource.Automation.Jobs { public class TestJob : IAutomationJob { public async Task Run() { return new AutomationJobResult { Message = "Test job ran successfully", IsSuccess = true }; } } }