mapcomplete/Logic/Web/Review.ts
2020-12-08 23:44:34 +01:00

7 lines
129 B
TypeScript

export interface Review {
comment?: string,
author: string,
date: Date,
rating: number,
affiliated: boolean
}