mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-16 17:10:17 -05:00
14 lines
245 B
C#
14 lines
245 B
C#
|
|
namespace MediaBrowser.Model.Sync
|
|
{
|
|
public class SyncDataResponse
|
|
{
|
|
public string[] ItemIdsToRemove { get; set; }
|
|
|
|
public SyncDataResponse()
|
|
{
|
|
ItemIdsToRemove = new string[] { };
|
|
}
|
|
}
|
|
}
|