mirror of
https://github.com/Readarr/Readarr.git
synced 2026-01-30 16:53:05 -05:00
17 lines
312 B
C#
17 lines
312 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Metadata.Files
|
|
{
|
|
public class ImageFileResult
|
|
{
|
|
public String Path { get; set; }
|
|
public String Url { get; set; }
|
|
|
|
public ImageFileResult(string path, string url)
|
|
{
|
|
Path = path;
|
|
Url = url;
|
|
}
|
|
}
|
|
}
|