mirror of
https://github.com/Radarr/Radarr
synced 2025-12-20 23:33:15 +01:00
16 lines
312 B
C#
16 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;
|
|
}
|
|
}
|
|
}
|