mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 09:03:49 -07:00
13 lines
No EOL
319 B
C#
13 lines
No EOL
319 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; }
|
|
public string Url { get; set; }
|
|
}
|
|
} |