mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-02-09 23:55:10 -05:00
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.
14 lines
345 B
C#
14 lines
345 B
C#
namespace octo_fiesta.Models.Search;
|
|
|
|
using octo_fiesta.Models.Domain;
|
|
|
|
/// <summary>
|
|
/// Search result combining local and external results
|
|
/// </summary>
|
|
public class SearchResult
|
|
{
|
|
public List<Song> Songs { get; set; } = new();
|
|
public List<Album> Albums { get; set; } = new();
|
|
public List<Artist> Artists { get; set; } = new();
|
|
}
|