Mike Phares 2614782d58 HttpSelfHostConfigurationBaseAddress
OpenInsightApplicationProgrammingInterface
Infineon.EAF.Runtime 2.49.3
2023-08-02 12:12:54 -07:00

21 lines
501 B
C#

using Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
using System.Collections.Generic;
namespace Adaptation.FileHandlers.MoveAllFiles.ApiController;
public class PostReplay
{
#nullable enable
public string? MId { get; }
public Dictionary<string, List<QaMetTest>> QaMetTests { get; }
[System.Text.Json.Serialization.JsonConstructor]
public PostReplay(string? mid, Dictionary<string, List<QaMetTest>> qaMetTests)
{
MId = mid;
QaMetTests = qaMetTests;
}
}