mirror of
https://github.com/Readarr/Readarr.git
synced 2026-01-30 16:53:05 -05:00
17 lines
338 B
C#
17 lines
338 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Metadata.Files
|
|
{
|
|
public class MetadataFileResult
|
|
{
|
|
public String Path { get; set; }
|
|
public String Contents { get; set; }
|
|
|
|
public MetadataFileResult(string path, string contents)
|
|
{
|
|
Path = path;
|
|
Contents = contents;
|
|
}
|
|
}
|
|
}
|