aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncJobCreationResult.cs
blob: ee46bc155b8f7a9200c918e76f909476c16eff91 (plain)
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 SyncJobItem[] JobItems { get; set; }

        public SyncJobCreationResult()
        {
            JobItems = new SyncJobItem[] { };
        }
    }
}