aboutsummaryrefslogtreecommitdiff
path: root/src/models/answer.ts
blob: ffdb200138fc91e6fdd2dc1e59ac9a66088120ab (plain)
1
2
3
4
5
6
7
8
9
export interface Answer {
    questionId: string;
    values: string[];
    error_msg: string;

    _complete: boolean;
    _processing: boolean;
}