mirror of
https://github.com/Readarr/Readarr
synced 2025-12-27 02:32:27 +01:00
13 lines
No EOL
325 B
C#
13 lines
No EOL
325 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Repository.Search;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class SearchDetailsModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string DisplayName { get; set; }
|
|
public List<SearchItemModel> SearchResultItems { get; set; }
|
|
}
|
|
} |