Skip to content

Commit 5cf7897

Browse files
Merge pull request #212 from notion-dotnet/211-fix-type-used-for-text-property-in-quoteblock
Fix: Use correct type 🐛
2 parents b5f9e9b + bb87ec5 commit 5cf7897

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/Notion.Client/Models/Blocks/QuoteBlock.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class QuoteBlock : Block, IColumnChildrenBlock, INonColumnBlock
1313
public class Info
1414
{
1515
[JsonProperty("text")]
16-
public IEnumerable<RichTextBaseInput> Text { get; set; }
16+
public IEnumerable<RichTextBase> Text { get; set; }
1717

1818
[JsonProperty("children")]
1919
public IEnumerable<INonColumnBlock> Children { get; set; }

0 commit comments

Comments
 (0)