jellyfin/MediaBrowser.Model/Sync/SyncDataRequest.cs
Luke Pulverenti 5965afecde live tv fix
2015-03-31 14:50:08 -04:00

20 lines
486 B
C#

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>();
}
}
}