mapcomplete/Logic/Web/Review.ts
2020-12-11 15:27:52 +01:00

11 lines
245 B
TypeScript

export interface Review {
comment?: string,
author: string,
date: Date,
rating: number,
affiliated: boolean,
/**
* True if the current logged in user is the creator of this comment
*/
made_by_user: boolean
}