SyncDataResponse.cs 431 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public class SyncDataResponse
  5. {
  6. public List<string> ItemIdsToRemove { get; set; }
  7. public Dictionary<string, List<string>> ItemUserAccess { get; set; }
  8. public SyncDataResponse()
  9. {
  10. ItemIdsToRemove = new List<string>();
  11. ItemUserAccess = new Dictionary<string, List<string>>();
  12. }
  13. }
  14. }