mirror of
https://github.com/Radarr/Radarr
synced 2025-12-28 11:13:48 +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; }
|
|
}
|
|
} |