Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

memorial.ts 255B

12345678910111213
  1. // 過去帳の型を定義
  2. export interface Memorial {
  3. id: string;
  4. dankaId: string;
  5. name: string;
  6. furigana: string;
  7. kaimyo: string;
  8. relationship: string;
  9. householdName: string;
  10. deathDate: string;
  11. memorialType: string;
  12. note: string;
  13. }