mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 11:48:26 -07:00
11 lines
275 B
C#
11 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; }
|
|
}
|
|
}
|