aswi2020anonymous-gitlab/fe/fulltextsearch/src/app/model/SearchRequest.ts @ 5bbfd157
1 | a6372cde | castic96 | export class SearchRequest { |
---|---|---|---|
2 | public expression: string; |
||
3 | public timestamp: Date; |
||
4 | c9f649fd | castic96 | public enableSpellCheck: boolean; |
5 | 443415f5 | castic96 | |
6 | c9f649fd | castic96 | constructor(expression: string, timestamp: Date, enableSpellCheck: boolean) { |
7 | 443415f5 | castic96 | this.expression = expression; |
8 | this.timestamp = timestamp; |
||
9 | c9f649fd | castic96 | this.enableSpellCheck = enableSpellCheck; |
10 | 443415f5 | castic96 | }
|
11 | a6372cde | castic96 | }
|