jellyfin/MediaBrowser.Model/Sync/SyncDataResponse.cs

15 lines
285 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; }
public SyncDataResponse()
{
ItemIdsToRemove = new List<string>();
}
}
}