Projekt

Obecné

Profil

Stáhnout (319 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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
}