Skip to content

Commit 688e4d7

Browse files
Use RichTextBase instead of RichTextBaseInput in bookmark block 💥
1 parent f65fe9b commit 688e4d7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

‎Src/Notion.Client/Models/Blocks/BookmarkBlock.cs‎

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using Newtonsoft.Json;
1+
using System.Collections.Generic;
2+
using Newtonsoft.Json;
23

34
namespace Notion.Client
45
{
@@ -13,6 +14,9 @@ public class Info
1314
{
1415
[JsonProperty("url")]
1516
public string Url { get; set; }
17+
18+
[JsonProperty("caption")]
19+
public IEnumerable<RichTextBase> Caption { get; set; }
1620
}
1721
}
1822
}

0 commit comments

Comments
 (0)