aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncCategory.cs
blob: e0d7486853d9bb6d713720778a90633e06b6693f (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 SyncCategory
    {
        /// <summary>
        /// The latest
        /// </summary>
        Latest = 0,
        /// <summary>
        /// The next up
        /// </summary>
        NextUp = 1,
        /// <summary>
        /// The resume
        /// </summary>
        Resume = 2
    }
}