Radarr/src/NzbDrone.Core/Extras/Metadata/MetadataType.cs

13 lines
241 B
C#
Raw Normal View History

namespace NzbDrone.Core.Extras.Metadata
2014-01-22 05:22:09 +00:00
{
public enum MetadataType
{
2014-01-26 07:14:55 +00:00
Unknown = 0,
SeriesMetadata = 1,
EpisodeMetadata = 2,
SeriesImage = 3,
SeasonImage = 4,
EpisodeImage = 5
2014-01-22 05:22:09 +00:00
}
}