refactor: reorganize Models into subdirectories by context

Split monolithic MusicModels.cs (177 lines) into separate files:
- Models/Settings/ (DeezerSettings, QobuzSettings, SubsonicSettings)
- Models/Domain/ (Song, Album, Artist)
- Models/Search/ (SearchResult)
- Models/Download/ (DownloadInfo, DownloadStatus)
- Models/Subsonic/ (ScanStatus)

Updated namespaces and imports across 22 files.
Improves navigation and separates models by business context.
This commit is contained in:
V1ck3s
2026-01-08 19:57:11 +01:00
parent c38291efa3
commit ce779b3c8a
29 changed files with 162 additions and 102 deletions

View File

@@ -1,5 +1,9 @@
using octo_fiesta.Services.Deezer;
using octo_fiesta.Models;
using octo_fiesta.Models.Domain;
using octo_fiesta.Models.Settings;
using octo_fiesta.Models.Download;
using octo_fiesta.Models.Search;
using octo_fiesta.Models.Subsonic;
using Moq;
using Moq.Protected;
using Microsoft.Extensions.Options;