1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00

PreDB Integration. Update Library is advisable

This commit is contained in:
Leonardo Galli
2017-03-11 00:17:09 +01:00
committed by GitHub
parent 3cf5301e46
commit 149c5292f1
16 changed files with 302 additions and 18 deletions
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.MetadataSource.PreDB
{
class PreDBResult
{
public string Title { get; set; }
public string Link { get; set; }
}
}