Files
VTSFetcher/VTSFetcher/Models/AnytypePageResponse.cs
2025-12-17 17:03:50 +09:00

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