SyncDataRequest.cs 486 B

12345678910111213141516171819
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public class SyncDataRequest
  5. {
  6. public List<string> LocalItemIds { get; set; }
  7. public List<string> OfflineUserIds { get; set; }
  8. public List<string> SyncJobItemIds { get; set; }
  9. public string TargetId { get; set; }
  10. public SyncDataRequest()
  11. {
  12. LocalItemIds = new List<string>();
  13. OfflineUserIds = new List<string>();
  14. }
  15. }
  16. }