mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
23 lines
380 B
C#
23 lines
380 B
C#
#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
|
|
}
|
|
}
|