aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncCategory.cs
blob: 1248c2f739a7114f1541bf013ed2121902476b6f (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.Sync
{
    public enum SyncCategory
    {
        /// <summary>
        /// The latest.
        /// </summary>
        Latest = 0,

        /// <summary>
        /// The next up.
        /// </summary>
        NextUp = 1,

        /// <summary>
        /// The resume.
        /// </summary>
        Resume = 2
    }
}