1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00
Files
Radarr/src/NzbDrone.Core/MetadataSource/PreDB/PreDBResult.cs
T
2017-03-11 00:17:09 +01:00

15 lines
257 B
C#

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; }
}
}