]> gitweb.hhaalo.de Git - speisekarten-editor.git/commitdiff
add: title infomation in interface
authorBastian Dehn <hhaalo@arcor.de>
Mon, 6 Jun 2022 10:21:24 +0000 (12:21 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Mon, 6 Jun 2022 10:21:24 +0000 (12:21 +0200)
src/app/isubtitle.ts
src/app/ititle.ts

index 330289eba43476826d950f15adda91c9426e4c6e..98bd9699f850e8d447ffbe21bbf177ae745528b8 100644 (file)
@@ -2,5 +2,6 @@ import { IFood } from './ifood';
 
 export interface ISubtitle
 {
+       Subtitle: string;
        Foods: IFood[];
 }
index 34268db1af5cddba9a568043250b44075f6b56bc..56fd3bebb6990f38686c26266bde4bcd8b045999 100644 (file)
@@ -2,5 +2,6 @@ import { ISubtitle } from './isubtitle'
 
 export interface ITitle
 {
+       Title: string;
        Subtitles: ISubtitle[];
 }