mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:36:12 +01:00
16 lines
336 B
C#
16 lines
336 B
C#
|
|
namespace MediaBrowser.Model.Sync
|
|
{
|
|
public class SyncDataRequest
|
|
{
|
|
public string[] LocalItemIds { get; set; }
|
|
public string[] SyncJobItemIds { get; set; }
|
|
|
|
public string TargetId { get; set; }
|
|
|
|
public SyncDataRequest()
|
|
{
|
|
LocalItemIds = new string[] { };
|
|
}
|
|
}
|
|
}
|