From d4a8e7a65f97bb3257facc13e1ae8ffdbad61ddb Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 28 Jun 2021 17:30:59 +0200 Subject: Support short uuid for GET video/playlist --- shared/models/common/result-list.model.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shared/models/common/result-list.model.ts (limited to 'shared/models/common/result-list.model.ts') diff --git a/shared/models/common/result-list.model.ts b/shared/models/common/result-list.model.ts new file mode 100644 index 000000000..fcafcfb2f --- /dev/null +++ b/shared/models/common/result-list.model.ts @@ -0,0 +1,8 @@ +export interface ResultList { + total: number + data: T[] +} + +export interface ThreadsResultList extends ResultList { + totalNotDeletedComments: number +} -- cgit v1.2.3