namespace octo_fiesta.Models.Search;
using octo_fiesta.Models.Domain;
///
/// Search result combining local and external results
///
public class SearchResult
{
public List Songs { get; set; } = new();
public List Albums { get; set; } = new();
public List Artists { get; set; } = new();
}