SyncDataRequest.cs 429 B

123456789101112131415161718
  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 string TargetId { get; set; }
  9. public SyncDataRequest()
  10. {
  11. LocalItemIds = new List<string>();
  12. OfflineUserIds = new List<string>();
  13. }
  14. }
  15. }