Add Form Results
This commit is contained in:
@@ -5,6 +5,7 @@ export class Formular {
|
||||
public ispublic: boolean;
|
||||
public multiple: boolean;
|
||||
public fields: MyField[];
|
||||
public results: FormularResults[];
|
||||
}
|
||||
|
||||
export enum FieldType {
|
||||
@@ -37,3 +38,18 @@ export class MyField {
|
||||
max?: number | null;
|
||||
checked?: boolean | null;
|
||||
}
|
||||
|
||||
export class FormularResult {
|
||||
id: number;
|
||||
parentid: number;
|
||||
parentobj: FormularResults;
|
||||
name: string;
|
||||
value: string;
|
||||
}
|
||||
|
||||
export class FormularResults {
|
||||
id:number;
|
||||
formular: Formular;
|
||||
formularid: number;
|
||||
results: FormularResult[];
|
||||
}
|
||||
Reference in New Issue
Block a user