diff options
| author | T. Adams <t.adams88@gmail.com> | 2015-04-03 11:04:25 -0700 |
|---|---|---|
| committer | T. Adams <t.adams88@gmail.com> | 2015-04-03 11:04:25 -0700 |
| commit | abf12569ba2aa31ea3a00e4faf3adad2f740cbd9 (patch) | |
| tree | 47c57c6361825491d38e3def6b716926ddd9aa59 /MediaBrowser.Model/Sync/LocalItem.cs | |
| parent | 46c92107490263f8e6abefbd2259780013fa195d (diff) | |
| parent | ef505c8e9e2b8f348aeaa89be6bc446014b72996 (diff) | |
Merging in latest dev
Diffstat (limited to 'MediaBrowser.Model/Sync/LocalItem.cs')
| -rw-r--r-- | MediaBrowser.Model/Sync/LocalItem.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Sync/LocalItem.cs b/MediaBrowser.Model/Sync/LocalItem.cs index c6a10298f..dbbecaf05 100644 --- a/MediaBrowser.Model/Sync/LocalItem.cs +++ b/MediaBrowser.Model/Sync/LocalItem.cs @@ -31,13 +31,24 @@ namespace MediaBrowser.Model.Sync /// <value>The item identifier.</value> public string ItemId { get; set; } /// <summary> + /// Gets or sets the synchronize job item identifier. + /// </summary> + /// <value>The synchronize job item identifier.</value> + public string SyncJobItemId { get; set; } + /// <summary> /// Gets or sets the user ids with access. /// </summary> /// <value>The user ids with access.</value> public List<string> UserIdsWithAccess { get; set; } + /// <summary> + /// Gets or sets the additional files. + /// </summary> + /// <value>The additional files.</value> + public List<string> AdditionalFiles { get; set; } public LocalItem() { + AdditionalFiles = new List<string>(); UserIdsWithAccess = new List<string>(); } } |
