manifold/common/answer.ts
2022-02-11 01:10:59 -06:00

13 lines
170 B
TypeScript

export type Answer = {
id: string
contractId: string
createdTime: number
userId: string
username: string
name: string
avatarUrl?: string
text: string
}