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.
![]()
continuous-integration/drone/push Build was killed
Details
|
2 years ago | |
---|---|---|
Sources | 2 years ago | |
.drone.yml | 2 years ago | |
README.md | 2 years ago |
README.md
Linaris_MAUI_SAE_201
Diagramme de classe
@startuml
class Artist {
- string name
+ Artist(string name)
+ boolean Equals(object obj)
+ int GetHashCode()
+ string ToString()
}
class Album {
- string name
- string description
- string imageURL
- string information
+ Album(string name, string file_Name, Artist artist, string description, string information)
+ Album()
+ void AddTitle(Title title)
+ void RemoveTitle(Title title)
+ boolean Equals(object obj)
+ int GetHashCode()
+ string ToString()
}
class Playlist {
- string name
- string description
- string imageURL
- int index = 0
+ boolean shuffle = false
+ boolean loop = false
+ boolean looptitle = false
- List<int> played
+ Playlist(string nom, string description, string imageURL)
+ Playlist()
+ void AddTitle(CustomTitle morceau)
+ void RemoveTitle(CustomTitle morceau)
+ void NextTitle()
+ void PreviousTitle()
+ Title? GetCurrentTitle()
+ boolean Equals(object? obj)
+ int GetHashCode()
+ string ToString()
- int RandomGenerator(int n)
}
Album --> "+ artist" Artist
@enduml