13 lines
303 B
C#
13 lines
303 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
|
|
|
|
public class WoMatQA
|
|
{
|
|
[JsonPropertyName("keyId")]
|
|
public string KeyId { get; set; }
|
|
|
|
[JsonPropertyName("tests")]
|
|
public List<Test> Tests { get; set; }
|
|
} |