mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-19 06:42:40 +01:00
16 lines
344 B
C#
16 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;
|
|
}
|
|
}
|
|
}
|