You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/Metadata/Files/ImageFileResult.cs

17 lines
344 B

using System;
namespace NzbDrone.Core.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;
}
}
}