No Description
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.

family.ts 254B

1234567891011121314
  1. //家族の定義
  2. export interface Family {
  3. id: string;
  4. dankaId: string;
  5. furigana: string;
  6. name: string;
  7. relationship: string;
  8. birthDate: string;
  9. note: string;
  10. fatherId: string;
  11. motherId: string;
  12. spouseId: string;
  13. gender: string;
  14. }