diff --git a/src/app/models/vote.ts b/src/app/models/vote.ts
index c2d4e0a62cced7e8efe279e169ff3eba7242e838..4ee6773e2d77353a08e7bdcb600f93a7c8f52bc6 100644
--- a/src/app/models/vote.ts
+++ b/src/app/models/vote.ts
@@ -1,5 +1,4 @@
 export class Vote {
-  id: string;
   userId: string;
   commentId: string;
   vote: number;
@@ -7,7 +6,6 @@ export class Vote {
   constructor(userId: string ,
               commentId: string,
               vote: number) {
-    this.id = '';
     this.userId = userId;
     this.commentId = commentId;
     this.vote = vote;