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

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

        public string TargetId { get; set; }

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