jellyfin/MediaBrowser.Model/Sync/SyncDataResponse.cs

14 lines
245 B
C#
Raw Normal View History

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

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