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.
![]() |
2 years ago | |
---|---|---|
docs | 2 years ago | |
icons | 2 years ago | |
qml | 2 years ago | |
rpm | 2 years ago | |
src | 2 years ago | |
translations | 2 years ago | |
.gitattributes | 2 years ago | |
.gitignore | 2 years ago | |
README.md | 2 years ago | |
oh_the_things_you_ll_do.desktop | 2 years ago | |
oh_the_things_you_ll_do.pro | 2 years ago |
README.md
Oh the things you'll do
Auteur
- Alexis Drai
Descriptif
Oh the things you'll do est une app the choses à faire. Elle affiche une liste de tasks
qui appartiennent à un project
.
On peut faire des opérations CRUD sur les tasks
.
Un projet a un titre et des tasks
.
Une task
a un titre, une description optionnelle, et un niveau de priorité entre 0 et 3, 0 étant le plus critique.
classDiagram
class Project {
+String title
+List<Task> tasks
}
class Task {
+String title
+String description
+int priority
}
Project --> "*" Task