aboutsummaryrefslogtreecommitdiff
path: root/src/models/post.model.ts
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-03-14 09:07:01 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-03-14 09:07:01 +0200
commite3a8875e64c25a6e46380c4d003beac5953fd3e9 (patch)
tree4cb5a0352865cbab3c5ae93141be9b7b2dae53df /src/models/post.model.ts
parent8434044dcf8cec14765aa5d96072feaa2560a823 (diff)
downloadDevHive-Angular-code-refactor.tar
DevHive-Angular-code-refactor.tar.gz
DevHive-Angular-code-refactor.zip
Fixed model imports of post and user modelscode-refactor
Diffstat (limited to 'src/models/post.model.ts')
-rw-r--r--src/models/post.model.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/models/post.model.ts b/src/models/post.model.ts
index 8e58bea..e0fcd5b 100644
--- a/src/models/post.model.ts
+++ b/src/models/post.model.ts
@@ -1,6 +1,6 @@
import { Guid } from 'guid-typescript';
-import { Comment } from './comment';
-import { PostComment } from './post-comment';
+import { Comment } from './comment.model';
+import { PostComment } from './post-comment.model';
export class Post {
private _postId: Guid;