2015-06-02 17:46:44 +00:00
|
|
|
|
using MediaBrowser.Model.Sync;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Sync
|
|
|
|
|
{
|
|
|
|
|
public class SyncedItemProgress
|
|
|
|
|
{
|
2016-08-03 06:38:19 +00:00
|
|
|
|
public double Progress { get; set; }
|
2015-06-02 17:46:44 +00:00
|
|
|
|
public SyncJobItemStatus Status { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|