2014-07-15 04:12:26 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Sync
|
|
|
|
|
{
|
|
|
|
|
public enum SyncJobStatus
|
|
|
|
|
{
|
|
|
|
|
Queued = 0,
|
|
|
|
|
Transcoding = 1,
|
|
|
|
|
TranscodingFailed = 2,
|
2014-07-27 22:01:29 +00:00
|
|
|
|
Transferring = 3,
|
2014-07-26 17:30:15 +00:00
|
|
|
|
Completed = 4,
|
|
|
|
|
Cancelled = 5
|
2014-07-15 04:12:26 +00:00
|
|
|
|
}
|
|
|
|
|
}
|