mirror of
https://github.com/Radarr/Radarr
synced 2025-12-09 09:56:04 +01:00
16 lines
370 B
C#
16 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;
|
|
}
|
|
}
|
|
}
|