aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncCategory.cs
blob: a01b36597901ce5acc79c4192c78df714d88063b (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
    }
}