1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-27 18:28:19 +00:00
Sonarr/NzbDrone.Web/Models/SearchDetailsModel.cs
Mark McDowall cef7b6a8dc SearchResult Controller added.
Force Download added.
2012-04-22 23:31:11 -07:00

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; }
}
}