20 lines
420 B
C#
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;
|
|
}
|
|
|
|
} |