jellyfin/MediaBrowser.Model/Sync/SyncDataResponse.cs
Luke Pulverenti 800a16a213 sync updates
2014-12-29 00:56:55 -05:00

15 lines
285 B
C#

using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class SyncDataResponse
{
public List<string> ItemIdsToRemove { get; set; }
public SyncDataResponse()
{
ItemIdsToRemove = new List<string>();
}
}
}