mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-19 21:46:43 -04:00
2e96c4e798
Towards #459
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; }
|
|
}
|
|
}
|