From f36e617e9e534a4b05f2029724d678bbd6c655b3 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期三, 22 十二月 2021 11:38:54 +0800 Subject: [PATCH] refactor: separate api/consultant.ts into serveral services --- PAMapp/shared/models/quick-filter.model.ts | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/PAMapp/shared/models/quickFilter.model.ts b/PAMapp/shared/models/quick-filter.model.ts similarity index 72% rename from PAMapp/shared/models/quickFilter.model.ts rename to PAMapp/shared/models/quick-filter.model.ts index 9445659..1364f73 100644 --- a/PAMapp/shared/models/quickFilter.model.ts +++ b/PAMapp/shared/models/quick-filter.model.ts @@ -1,13 +1,13 @@ export interface QuestionOption { - title: string; + title : string; detail: Detail[]; - type: string; - name: string; + type : string; + name : string; } interface Detail { - value: string; - name?: string; + value : string; + name? : string; className: string; } @@ -20,5 +20,5 @@ export interface Selected { option: string; - value: any; -} \ No newline at end of file + value : any; +} -- Gitblit v1.8.0