8000 Merge pull request #320 from notion-dotnet/317-fix-RichTextPropertyIt… · notion-dotnet/notion-sdk-net@22a79cf · GitHub
[go: up one dir, main page]

Skip to content

Commit 22a79cf

Browse files
Merge pull request #320 from notion-dotnet/317-fix-RichTextPropertyItem-parsing
Fix RichTextPropertyItem parsing
2 parents b40a401 + 273e11c commit 22a79cf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
namespace Notion.Client
1+
using Newtonsoft.Json;
2+
3+
namespace Notion.Client
24
{
35
public class RichTextPropertyItem : SimplePropertyItem
46
{
57
public override string Type => "rich_text";
68

9+
[JsonProperty("rich_text")]
710
public RichTextBase RichText { get; set; }
811
}
912
}

0 commit comments

Comments
 (0)
0