diff options
Diffstat (limited to 'shared/models/common')
-rw-r--r-- | shared/models/common/index.ts | 1 | ||||
-rw-r--r-- | shared/models/common/result-list.model.ts | 8 |
2 files changed, 0 insertions, 9 deletions
diff --git a/shared/models/common/index.ts b/shared/models/common/index.ts deleted file mode 100644 index 4db85eff2..000000000 --- a/shared/models/common/index.ts +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | export * from './result-list.model' | ||
diff --git a/shared/models/common/result-list.model.ts b/shared/models/common/result-list.model.ts deleted file mode 100644 index fcafcfb2f..000000000 --- a/shared/models/common/result-list.model.ts +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | export interface ResultList<T> { | ||
2 | total: number | ||
3 | data: T[] | ||
4 | } | ||
5 | |||
6 | export interface ThreadsResultList <T> extends ResultList <T> { | ||
7 | totalNotDeletedComments: number | ||
8 | } | ||