mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-17 21:44:48 -04:00
12 lines
279 B
C#
12 lines
279 B
C#
using System.Linq;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class TvDbSearchResultModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Banner { get; set; }
|
|
public string DisplayedTitle { get; set; }
|
|
}
|
|
} |