Lidarr/NzbDrone.Core/Parser/Model/TorrentInfo.cs

8 lines
186 B
C#
Raw Normal View History

2013-09-13 23:17:58 +00:00
namespace NzbDrone.Core.Parser.Model
{
public class TorrentInfo : ReleaseInfo
{
public string MagnetUrl { get; set; }
public string InfoHash { get; set; }
}
}