초기 커밋.

This commit is contained in:
2025-12-17 17:03:50 +09:00
committed by seungmuk.oh
commit 4de4d36282
28 changed files with 2169 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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; }
}