13 lines
170 B
TypeScript
13 lines
170 B
TypeScript
export type Answer = {
|
|
id: string
|
|
contractId: string
|
|
createdTime: number
|
|
|
|
userId: string
|
|
username: string
|
|
name: string
|
|
avatarUrl?: string
|
|
|
|
text: string
|
|
}
|