diff --git a/Sources/SyndiKit/Formats/Media/Podcast/PodcastEpisode.swift b/Sources/SyndiKit/Formats/Media/Podcast/PodcastEpisode.swift index 084f3eb..918cffd 100644 --- a/Sources/SyndiKit/Formats/Media/Podcast/PodcastEpisode.swift +++ b/Sources/SyndiKit/Formats/Media/Podcast/PodcastEpisode.swift @@ -71,6 +71,9 @@ public protocol PodcastEpisode { /// A summary of the episode. var summary: String? { get } + /// Indicates if the episode contains explicit content. + var explicit: String? { get } + /// The subtitle of the episode. var subtitle: String? { get } @@ -80,9 +83,6 @@ public protocol PodcastEpisode { /// The image associated with the episode. var image: iTunesImage? { get } - /// Indicates if the episode contains explicit content. - var explicit: String? { get } - /// The enclosure of the episode. var enclosure: Enclosure { get }