mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-15 21:06:20 -04:00
12 lines
275 B
C#
12 lines
275 B
C#
using NzbDrone.Core.Extras.Files;
|
|
|
|
namespace NzbDrone.Core.Extras.Metadata.Files
|
|
{
|
|
public class MetadataFile : ExtraFile
|
|
{
|
|
public string Hash { get; set; }
|
|
public string Consumer { get; set; }
|
|
public MetadataType Type { get; set; }
|
|
}
|
|
}
|