aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncDataResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Sync/SyncDataResponse.cs')
-rw-r--r--MediaBrowser.Model/Sync/SyncDataResponse.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Sync/SyncDataResponse.cs b/MediaBrowser.Model/Sync/SyncDataResponse.cs
index ac7ff5c84..3799e9455 100644
--- a/MediaBrowser.Model/Sync/SyncDataResponse.cs
+++ b/MediaBrowser.Model/Sync/SyncDataResponse.cs
@@ -5,10 +5,12 @@ namespace MediaBrowser.Model.Sync
public class SyncDataResponse
{
public List<string> ItemIdsToRemove { get; set; }
+ public Dictionary<string, List<string>> ItemUserAccess { get; set; }
public SyncDataResponse()
{
ItemIdsToRemove = new List<string>();
+ ItemUserAccess = new Dictionary<string, List<string>>();
}
}
}