Files
jellyfin-jellyfin-1/MediaBrowser.Model/Sync/SyncDataRequest.cs

19 lines
429 B
C#
Raw Normal View History

2014-12-29 00:56:55 -05:00
using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class SyncDataRequest
{
public List<string> LocalItemIds { get; set; }
2015-02-03 16:06:56 -05:00
public List<string> OfflineUserIds { get; set; }
2014-12-29 00:56:55 -05:00
public string TargetId { get; set; }
public SyncDataRequest()
{
LocalItemIds = new List<string>();
2015-02-03 16:06:56 -05:00
OfflineUserIds = new List<string>();
2014-12-29 00:56:55 -05:00
}
}
}