aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncDataRequest.cs
blob: 0df4de86d173d8401a350ddc64e1c4117a93ea60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System.Collections.Generic;

namespace MediaBrowser.Model.Sync
{
    public class SyncDataRequest
    {
        public List<string> LocalItemIds { get; set; }
        public List<string> OfflineUserIds { get; set; }
        public List<string> SyncJobItemIds { get; set; }

        public string TargetId { get; set; }

        public SyncDataRequest()
        {
            LocalItemIds = new List<string>();
            OfflineUserIds = new List<string>();
        }
    }
}