-
Notifications
You must be signed in to change notification settings - Fork 867
/
Copy pathPageViewModel.cs
36 lines (29 loc) · 1.11 KB
/
PageViewModel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Text.Json.Serialization;
using Docfx.DataContracts.Common;
using Docfx.YamlSerialization;
using Newtonsoft.Json;
using YamlDotNet.Serialization;
namespace Docfx.DataContracts.UniversalReference;
public class PageViewModel
{
[YamlMember(Alias = "items")]
[JsonProperty("items")]
[JsonPropertyName("items")]
public List<ItemViewModel> Items { get; set; } = [];
[YamlMember(Alias = "references")]
[JsonProperty("references")]
[JsonPropertyName("references")]
[UniqueIdentityReferenceIgnore]
[MarkdownContentIgnore]
public List<ReferenceViewModel> References { get; set; } = [];
[YamlMember(Alias = "shouldSkipMarkup")]
[JsonProperty("shouldSkipMarkup")]
[JsonPropertyName("shouldSkipMarkup")]
public bool ShouldSkipMarkup { get; set; }
[ExtensibleMember]
[Newtonsoft.Json.JsonExtensionData]
[System.Text.Json.Serialization.JsonExtensionData]
public Dictionary<string, object> Metadata { get; set; } = [];
}