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