sync updates

This commit is contained in:
Luke Pulverenti
2015-02-04 22:01:37 -05:00
parent 046a1de253
commit 1f1852f3cb
24 changed files with 280 additions and 57 deletions

View File

@@ -0,0 +1,15 @@
using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class CompleteSyncJobInfo
{
public SyncJob Job { get; set; }
public List<SyncJobItem> JobItems { get; set; }
public CompleteSyncJobInfo()
{
JobItems = new List<SyncJobItem>();
}
}
}