mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
Compilation: Fix case inconsistencies
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user