15 lines
328 B
C#
15 lines
328 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.MoveAllFiles.OpenInsight;
|
|
|
|
public class Root
|
|
{
|
|
[JsonPropertyName("rds")]
|
|
public Rds Rds { get; set; }
|
|
|
|
[JsonPropertyName("_links")]
|
|
public object Links { get; set; }
|
|
|
|
[JsonPropertyName("_class")]
|
|
public string Class { get; set; }
|
|
} |