mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-28 02:37:40 +00:00
12 lines
No EOL
279 B
C#
12 lines
No EOL
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; }
|
|
}
|
|
} |