CompleteSyncJobInfo.cs 322 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public class CompleteSyncJobInfo
  5. {
  6. public SyncJob Job { get; set; }
  7. public SyncJobItem[] JobItems { get; set; }
  8. public CompleteSyncJobInfo()
  9. {
  10. JobItems = new SyncJobItem[] { };
  11. }
  12. }
  13. }