aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncCategory.cs
blob: 215ac301e036213d28f26c15923af8a1e3479410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma warning disable CS1591

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
    }
}