diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/models/identity/user.model.ts | 8 | ||||
| -rw-r--r-- | src/models/post.model.ts | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/models/identity/user.model.ts b/src/models/identity/user.model.ts index e0038e0..e2f54a4 100644 --- a/src/models/identity/user.model.ts +++ b/src/models/identity/user.model.ts @@ -1,8 +1,8 @@ import { Guid } from 'guid-typescript'; -import { Language } from '../language'; -import { Technology } from '../technology'; -import { Friend } from './friend'; -import { Role } from './role'; +import { Language } from '../language.model'; +import { Technology } from '../technology.model'; +import { Friend } from './friend.model'; +import { Role } from './role.model'; export class User { private _id : Guid; 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; |
