mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
17 lines
336 B
C#
17 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[] { };
|
|
}
|
|
}
|
|
}
|