mirror of
https://github.com/Radarr/Radarr
synced 2024-12-23 00:12:44 +00:00
a427f9c16d
Created SabControllerTest - Added AddByPath Test (Needs more work) Added, Episode, FeedItem, ItemInfo and Site classes to store information
21 lines
525 B
C#
21 lines
525 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
public class ItemInfo
|
|
{
|
|
public string Id { get; set; }
|
|
public string Title { get; set; }
|
|
public Site Site { get; set; }
|
|
public Uri Link { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
public bool IsPassworded()
|
|
{
|
|
return Title.EndsWith("(Passworded)", StringComparison.InvariantCultureIgnoreCase);
|
|
}
|
|
}
|
|
}
|