Add TvDbEpisodeId to Episode. now we can index episodes before they showup in thetvdb

This commit is contained in:
kay.one 2011-04-23 13:33:24 -07:00
commit 3beeff4e18
4 changed files with 232 additions and 309 deletions

View file

@ -1,15 +0,0 @@
using System;
namespace NzbDrone.Core.Model
{
public class NzbInfoModel
{
public string Title { get; set; }
public Uri Link { get; set; }
public bool IsPassworded()
{
return Title.EndsWith("(Passworded)", StringComparison.InvariantCultureIgnoreCase);
}
}
}