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.
|
//
|
|
// Episode.swift
|
|
// MySwiftUi
|
|
//
|
|
// Created by etudiant on 16/05/2023.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Episode: Identifiable {
|
|
let id: UUID
|
|
let date: String
|
|
let titre: String
|
|
let description: String
|
|
let heure: String
|
|
}
|
|
|
|
|