jellyfin-server/MediaBrowser.Model/Sync/SyncDataResponse.cs

17 lines
431 B
C#
Raw Normal View History

2014-12-29 05:56:55 +00:00
using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class SyncDataResponse
{
public List<string> ItemIdsToRemove { get; set; }
2015-02-03 21:06:56 +00:00
public Dictionary<string, List<string>> ItemUserAccess { get; set; }
2014-12-29 05:56:55 +00:00
public SyncDataResponse()
{
ItemIdsToRemove = new List<string>();
2015-02-03 21:06:56 +00:00
ItemUserAccess = new Dictionary<string, List<string>>();
2014-12-29 05:56:55 +00:00
}
}
}