mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-19 22:04:56 -04:00
2e96c4e798
Towards #459
15 lines
336 B
C#
15 lines
336 B
C#
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;
|
|
}
|
|
}
|
|
}
|