aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/ItemFileType.cs
blob: 305f4c502d713a63b07dfb901127e5cbc94ceb8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace MediaBrowser.Model.Sync
{
    public enum ItemFileType
    {
        /// <summary>
        /// The media
        /// </summary>
        Media = 0,
        /// <summary>
        /// The image
        /// </summary>
        Image = 1,
        /// <summary>
        /// The subtitles
        /// </summary>
        Subtitles = 2
    }
}