You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
280 B

//
// PodcastEpisode.swift
// PodcastsClone
//
// Created by etudiant on 2023-05-21.
//
import Foundation
struct Episode {
var id: UUID
var publicationDate: Date
var title: String
var description: String
var duration: TimeInterval // duration in seconds
}