19 lines
450 B
C#
19 lines
450 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace VTSFetcher.Models;
|
|
|
|
internal class AnytypePageResponse
|
|
{
|
|
[JsonPropertyName("object")]
|
|
public AnytypePageObject Object { get; set; }
|
|
}
|
|
|
|
public class AnytypePageObject
|
|
{
|
|
[JsonPropertyName("object")]
|
|
public string ObjectType { get; set; }
|
|
[JsonPropertyName("id")]
|
|
public string ObjectId { get; set; }
|
|
[JsonPropertyName("space_id")]
|
|
public string SpaceId { get; set; }
|
|
} |