10 lines
234 B
C#
10 lines
234 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
|
|
|
|
public class SurfScan2
|
|
{
|
|
[JsonPropertyName("specs")]
|
|
public List<Spec> Specs { get; set; }
|
|
} |