mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 10:58:58 -07:00
19 lines
343 B
C#
19 lines
343 B
C#
|
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
|
||
|
}
|
||
|
}
|