mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 02:52:41 +01:00
9669869c9b
Fixed: Adding a series is now blocked unless a valid root folder is provided
11 lines
228 B
C#
11 lines
228 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; }
|
|
}
|
|
} |