1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-04 22:40:51 +00:00
Sonarr/NzbDrone.Core/Repository/ItemInfo.cs

22 lines
525 B
C#
Raw Normal View History

2010-09-28 03:40:01 +00:00
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);
}
}
}