stub out mock sync provider

This commit is contained in:
Luke Pulverenti
2014-07-22 12:36:34 -04:00
parent 12a0a02515
commit d56fa09ccc
22 changed files with 194 additions and 102 deletions

View File

@@ -10,19 +10,25 @@ namespace MediaBrowser.Model.Sync
/// <value>The device identifier.</value>
public List<string> TargetIds { get; set; }
/// <summary>
/// Gets or sets the item identifier.
/// Gets or sets the item ids.
/// </summary>
/// <value>The item identifier.</value>
public string ItemId { get; set; }
/// <value>The item ids.</value>
public List<string> ItemIds { get; set; }
/// <summary>
/// Gets or sets the quality.
/// </summary>
/// <value>The quality.</value>
public SyncQuality Quality { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
public SyncJobRequest()
{
TargetIds = new List<string>();
ItemIds = new List<string>();
}
}
}