From 16b8b6499d82a016dd6dd437fba32df3dc3cdaf8 Mon Sep 17 00:00:00 2001 From: Nikita Kolmogorov Date: Wed, 21 Dec 2022 18:33:50 -0800 Subject: [PATCH] add parentHash --- src/models/Notification.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/models/Notification.ts b/src/models/Notification.ts index da9d212..0f4d7d6 100644 --- a/src/models/Notification.ts +++ b/src/models/Notification.ts @@ -9,6 +9,7 @@ export interface Notification { text?: string hash?: string threadHash?: string + parentHash?: string timestamp: number } }