mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
17 lines
344 B
C#
17 lines
344 B
C#
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;
|
|
}
|
|
}
|
|
}
|