add mark for removal options

This commit is contained in:
Luke Pulverenti
2015-01-20 23:56:00 -05:00
parent f636c10e24
commit f5b7e1dba4
6 changed files with 119 additions and 2 deletions

View File

@@ -86,8 +86,15 @@ namespace MediaBrowser.Model.Sync
/// </summary>
/// <value>The temporary path.</value>
public string TemporaryPath { get; set; }
/// <summary>
/// Gets or sets the additional files.
/// </summary>
/// <value>The additional files.</value>
public List<ItemFileInfo> AdditionalFiles { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is marked for removal.
/// </summary>
/// <value><c>true</c> if this instance is marked for removal; otherwise, <c>false</c>.</value>
public bool IsMarkedForRemoval { get; set; }
public SyncJobItem()