Browse Source

[add]

檀家のクラス定義を作成
poohr 1 month ago
parent
commit
59c2af6c5f
1 changed files with 13 additions and 0 deletions
  1. 13
    0
      src/app/models/danka.ts

+ 13
- 0
src/app/models/danka.ts View File

@@ -0,0 +1,13 @@
1
+export interface Phone {
2
+  tel: string;
3
+  note: string;
4
+}
5
+
6
+export interface Danka {
7
+  id: string;
8
+  householdName: string;
9
+  householder: string;
10
+  postalCode: string;
11
+  address: string;
12
+  phones: Phone[];
13
+}

Loading…
Cancel
Save