From 75e13a5999e86e0512164322ff49e7c1be4ebb91 Mon Sep 17 00:00:00 2001 From: "Daniel J. Summers" Date: Fri, 5 Jan 2024 18:57:06 -0500 Subject: [PATCH] Add chapters waypoint flag (#6) --- src/MyWebLog.Domain/SupportTypes.fs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/MyWebLog.Domain/SupportTypes.fs b/src/MyWebLog.Domain/SupportTypes.fs index eab1488..c424dad 100644 --- a/src/MyWebLog.Domain/SupportTypes.fs +++ b/src/MyWebLog.Domain/SupportTypes.fs @@ -227,6 +227,9 @@ type Episode = { /// The MIME type for the chapter file ChapterType: string option + /// Whether the chapters have locations that should be displayed as waypoints + ChapterWaypoints: bool option + /// The URL for the transcript of the episode (may be permalink) TranscriptUrl: string option @@ -264,6 +267,7 @@ type Episode = { Chapters = None ChapterFile = None ChapterType = None + ChapterWaypoints = None TranscriptUrl = None TranscriptType = None TranscriptLang = None