1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
using System.Collections.Generic; namespace MediaBrowser.Model.Sync { public class SyncJobCreationResult { public SyncJob Job { get; set; } public List<SyncJobItem> JobItems { get; set; } public SyncJobCreationResult() { JobItems = new List<SyncJobItem>(); } } }