Projekt

Obecné

Profil

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