From 8f81dc44775a034ce762266bddea54b96b60c8e5 Mon Sep 17 00:00:00 2001 From: Vedant Koditkar Date: Sat, 8 Oct 2022 19:47:13 +0530 Subject: [PATCH] =?UTF-8?q?Revert=20the=20removal=20of=20Retrieve=20API=20?= =?UTF-8?q?from=20ICommentsClient=20=E2=8F=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Src/Notion.Client/Api/Comments/ICommentsClient.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Src/Notion.Client/Api/Comments/ICommentsClient.cs b/Src/Notion.Client/Api/Comments/ICommentsClient.cs index 8ec81348..49062a34 100644 --- a/Src/Notion.Client/Api/Comments/ICommentsClient.cs +++ b/Src/Notion.Client/Api/Comments/ICommentsClient.cs @@ -5,5 +5,7 @@ namespace Notion.Client public interface ICommentsClient { Task Create(CreateCommentParameters createCommentParameters); + + Task Retrieve(RetrieveCommentsParameters parameters); } }