mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 20:12:18 +01:00
13 lines
245 B
C#
13 lines
245 B
C#
|
|
namespace MediaBrowser.Model.Sync
|
|
{
|
|
public class SyncDataResponse
|
|
{
|
|
public string[] ItemIdsToRemove { get; set; }
|
|
|
|
public SyncDataResponse()
|
|
{
|
|
ItemIdsToRemove = new string[] { };
|
|
}
|
|
}
|
|
}
|