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