21 lines
501 B
C#
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;
|
|
}
|
|
|
|
} |