mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-22 01:56:40 +00:00
update live tv data transfer
This commit is contained in:
@@ -4,16 +4,16 @@ 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[] LocalItemIds { get; set; }
|
||||
public string[] OfflineUserIds { get; set; }
|
||||
public string[] SyncJobItemIds { get; set; }
|
||||
|
||||
public string TargetId { get; set; }
|
||||
|
||||
public SyncDataRequest()
|
||||
{
|
||||
LocalItemIds = new List<string>();
|
||||
OfflineUserIds = new List<string>();
|
||||
LocalItemIds = new string[] { };
|
||||
OfflineUserIds = new string[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user