Files
Partsource/PartSource.Automation/Jobs/TestJob.cs
2020-04-13 11:45:53 -04:00

22 lines
530 B
C#

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<AutomationJobResult> Run()
{
return new AutomationJobResult
{
Message = "Test job ran successfully from the new server",
IsSuccess = true
};
}
}
}