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.

29 lines
859 B

//
// Player.swift
// MyFirstProject
//
// Created by etudiant on 09/05/2023.
//
import Foundation
import SwiftUI
public class Album {
public var nom : String = "LE MONDE DES MIONES"
public var type : String = "France inter"
public var auteur : String = "Jack break"
public var image : String = "Image"
public var image_album : String = "Background"
public var ranking : Int = 12
public var description : String = "mode reti opera dies erio dezas one vuote quenta ila caraie in present gratis del boias trios campolaire mode reti opera dies erio dezas one vuote quenta ila caraie in present gratis del boias trios campolaire "
init(nom: String, type: String, image: String, ranking: Int) {
self.nom = nom
self.type = type
self.image = image
self.ranking = ranking
}
}