mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-23 09:07:32 +00:00
17 lines
370 B
C#
17 lines
370 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Metadata.Files
|
|
{
|
|
public class MetadataFileResult
|
|
{
|
|
public String RelativePath { get; set; }
|
|
public String Contents { get; set; }
|
|
|
|
public MetadataFileResult(string relativePath, string contents)
|
|
{
|
|
RelativePath = relativePath;
|
|
Contents = contents;
|
|
}
|
|
}
|
|
}
|