added cloud sync model objects

This commit is contained in:
Luke Pulverenti
2014-07-21 21:29:06 -04:00
parent ce20066bc0
commit c524f3919e
93 changed files with 1088 additions and 675 deletions

View File

@@ -8,7 +8,7 @@ namespace MediaBrowser.Model.Sync
/// Gets or sets the device identifier.
/// </summary>
/// <value>The device identifier.</value>
public List<string> DeviceIds { get; set; }
public List<string> TargetIds { get; set; }
/// <summary>
/// Gets or sets the item identifier.
/// </summary>
@@ -22,7 +22,7 @@ namespace MediaBrowser.Model.Sync
public SyncJobRequest()
{
DeviceIds = new List<string>();
TargetIds = new List<string>();
}
}
}