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

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; }
}