feat(libraries): add size property to Library and related models for better content representation

This commit is contained in:
2026-05-02 20:56:05 +02:00
parent 2753a45645
commit 53bc6246e4
10 changed files with 18 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ data class Library(
val name: String,
val type: LibraryKind,
val posterUrl: String,
val size: Int,
val series: List<Series>? = null,
val movies: List<Movie>? = null,
) {