2023-08-01 14:12:05 -07:00

20 lines
420 B
C#

using Adaptation.FileHandlers.TIBCO.Transport;
namespace Adaptation.FileHandlers.MoveAllFiles.ApiController;
public class PostReplay
{
public Job Job { get; }
public string MId { get; }
public string Recipe { get; }
[System.Text.Json.Serialization.JsonConstructor]
public PostReplay(Job job, string mid, string recipe)
{
Job = job;
MId = mid;
Recipe = recipe;
}
}