From: Bastian Dehn Date: Mon, 6 Jun 2022 10:21:24 +0000 (+0200) Subject: add: title infomation in interface X-Git-Tag: v1.0^2~50 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=f43665f2d113d79be0e49857d91aaaf9a3bec861;p=speisekarten-editor.git add: title infomation in interface --- diff --git a/src/app/isubtitle.ts b/src/app/isubtitle.ts index 330289e..98bd969 100644 --- a/src/app/isubtitle.ts +++ b/src/app/isubtitle.ts @@ -2,5 +2,6 @@ import { IFood } from './ifood'; export interface ISubtitle { + Subtitle: string; Foods: IFood[]; } diff --git a/src/app/ititle.ts b/src/app/ititle.ts index 34268db..56fd3be 100644 --- a/src/app/ititle.ts +++ b/src/app/ititle.ts @@ -2,5 +2,6 @@ import { ISubtitle } from './isubtitle' export interface ITitle { + Title: string; Subtitles: ISubtitle[]; }