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

14 lines
245 B
C#
Raw Normal View History

2017-08-19 19:43:35 +00:00

2014-12-29 05:56:55 +00:00
namespace MediaBrowser.Model.Sync
{
public class SyncDataResponse
{
2017-08-19 19:43:35 +00:00
public string[] ItemIdsToRemove { get; set; }
2014-12-29 05:56:55 +00:00
public SyncDataResponse()
{
2017-08-19 19:43:35 +00:00
ItemIdsToRemove = new string[] { };
2014-12-29 05:56:55 +00:00
}
}
}