mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-25 03:26:32 +00:00
update live tv data transfer
This commit is contained in:
@@ -1,16 +1,13 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
|
||||
namespace MediaBrowser.Model.Sync
|
||||
{
|
||||
public class SyncDataResponse
|
||||
{
|
||||
public List<string> ItemIdsToRemove { get; set; }
|
||||
public Dictionary<string, List<string>> ItemUserAccess { get; set; }
|
||||
public string[] ItemIdsToRemove { get; set; }
|
||||
|
||||
public SyncDataResponse()
|
||||
{
|
||||
ItemIdsToRemove = new List<string>();
|
||||
ItemUserAccess = new Dictionary<string, List<string>>();
|
||||
ItemIdsToRemove = new string[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user