blob: 0fd929eb18f8a3ca0a59418a38706a2dd5170feb (
plain)
1
2
3
4
5
6
7
8
9
10
|
using MediaBrowser.Model.Sync;
namespace MediaBrowser.Controller.Sync
{
public class SyncedItemProgress
{
public double Progress { get; set; }
public SyncJobItemStatus Status { get; set; }
}
}
|