diff --git a/client/src/app/garden/components/plant_list/src/PlantFeedback.ts b/client/src/app/garden/components/plant_list/src/PlantFeedback.ts new file mode 100644 index 0000000..692d2bf --- /dev/null +++ b/client/src/app/garden/components/plant_list/src/PlantFeedback.ts @@ -0,0 +1,12 @@ +export class PlantFeedback{ + commentCount:number; + likeCount:number; + dislikeCount:number; + + + constructor(){ + this.commentCount = 0; + this.likeCount = 0; + this.dislikeCount = 0; + } +} \ No newline at end of file