mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 01:05:19 +03:00
added sync model objects
This commit is contained in:
35
MediaBrowser.Model/Sync/SyncJobStatus.cs
Normal file
35
MediaBrowser.Model/Sync/SyncJobStatus.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
|
||||
namespace MediaBrowser.Model.Sync
|
||||
{
|
||||
public enum SyncJobStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// The queued
|
||||
/// </summary>
|
||||
Queued = 0,
|
||||
/// <summary>
|
||||
/// The transcoding
|
||||
/// </summary>
|
||||
Transcoding = 1,
|
||||
/// <summary>
|
||||
/// The transcoding failed
|
||||
/// </summary>
|
||||
TranscodingFailed = 2,
|
||||
/// <summary>
|
||||
/// The transcoding completed
|
||||
/// </summary>
|
||||
TranscodingCompleted = 3,
|
||||
/// <summary>
|
||||
/// The transfering
|
||||
/// </summary>
|
||||
Transfering = 4,
|
||||
/// <summary>
|
||||
/// The transfer failed
|
||||
/// </summary>
|
||||
TransferFailed = 4,
|
||||
/// <summary>
|
||||
/// The completed
|
||||
/// </summary>
|
||||
Completed = 6
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user