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.

21 lines
337 B

//
// Podcast.swift
// PodcastsClone
//
// Created by etudiant on 2023-05-16.
//
import Foundation
class Podcast {
var title: String
var length: Int
var id: Int
init(title: String = "test title", length: Int = 400, id: Int) {
self.title = title
self.length = length
self.id = id
}
}