added sync job database

This commit is contained in:
Luke Pulverenti
2014-07-26 13:30:15 -04:00
parent d56fa09ccc
commit 37c27a26e9
97 changed files with 1539 additions and 507 deletions

View File

@@ -3,33 +3,11 @@ 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
Transfering = 3,
Completed = 4,
Cancelled = 5
}
}