초기 커밋.
This commit is contained in:
19
VTSFetcher/Models/AnytypePageResponse.cs
Normal file
19
VTSFetcher/Models/AnytypePageResponse.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user