This commit is contained in:
2024-11-27 11:40:43 +01:00
parent 53e7db435c
commit 95fe01ad86
51 changed files with 4175 additions and 456 deletions

View File

@@ -0,0 +1,24 @@
export interface AvisoTvSettingsDto {
tvTextBezeichnungID: number;
standortID: number;
tvTextBezeichnung: string;
standort: string;
position: string;
fixeZeile1?: string;
fixeZeile2?: string;
fixeZeile3?: string;
art?: string;
startDate?: string | null;
endDate?: string | null;
startTime?: string | null;
endTime?: string | null;
isRecurring: boolean;
isMonday: boolean;
isTuesday: boolean;
isWednesday: boolean;
isThursday: boolean;
isFriday: boolean;
isSaturday: boolean;
isSunday: boolean;
isActive: boolean;
}