jellyfin/MediaBrowser.Model/Sync/SyncDataResponse.cs

17 lines
431 B
C#
Raw Normal View History

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