diff options
Diffstat (limited to 'src/models/Thread.ts')
-rw-r--r-- | src/models/Thread.ts | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/models/Thread.ts b/src/models/Thread.ts index e5d9f66..c31404f 100644 --- a/src/models/Thread.ts +++ b/src/models/Thread.ts @@ -1,19 +1,19 @@ export type Comment = { - id: string; - commentCreator: string; - commentText: string; - creationDate: number; - imageId: string; - fileType: string //image or video + id: string; + commentCreator: string; + commentText: string; + creationDate: number; + imageId: string; + fileType: string //image or video }; export type Thread = { - id: string; - threadName: string; - threadCreator: string; - threadText: string; - comments: Comment[]; - creationDate: number; - imageId: string; - fileType: string; //image or video + id: string; + threadName: string; + threadCreator: string; + threadText: string; + comments: Comment[]; + creationDate: number; + imageId: string; + fileType: string; //image or video }; |