aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/MetadataPluginType.cs
blob: 476060ceef1e5636cda8ff233d134f7a1e9a233e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma warning disable CS1591

namespace MediaBrowser.Model.Configuration
{
    /// <summary>
    /// Enum MetadataPluginType.
    /// </summary>
    public enum MetadataPluginType
    {
        LocalImageProvider,
        ImageFetcher,
        ImageSaver,
        LocalMetadataProvider,
        MetadataFetcher,
        MetadataSaver,
        SubtitleFetcher,
        LyricFetcher,
        MediaSegmentProvider,
        LocalSimilarityProvider,
        SimilarityProvider
    }
}