1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Rename Metadata Dir to fix build in *nix

This commit is contained in:
Keivan
2016-12-24 11:21:46 -08:00
committed by Keivan Beigi
parent eafe79450e
commit 03b83ed226
22 changed files with 0 additions and 0 deletions
@@ -0,0 +1,14 @@
namespace NzbDrone.Core.Extras.Metadata.Files
{
public class ImageFileResult
{
public string RelativePath { get; set; }
public string Url { get; set; }
public ImageFileResult(string relativePath, string url)
{
RelativePath = relativePath;
Url = url;
}
}
}