MapComplete/Logic/Web/Review.ts
2022-09-08 21:40:48 +02:00

13 lines
290 B
TypeScript

import { Store } from "../UIEventSource"
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: Store<boolean>
}