mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 18:28:19 +00:00
cef7b6a8dc
Force Download added.
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; }
|
|
}
|
|
} |