mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
17 lines
323 B
C#
17 lines
323 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Model.Sync
|
|
{
|
|
public class SyncDataRequest
|
|
{
|
|
public List<string> LocalItemIds { get; set; }
|
|
|
|
public string TargetId { get; set; }
|
|
|
|
public SyncDataRequest()
|
|
{
|
|
LocalItemIds = new List<string>();
|
|
}
|
|
}
|
|
}
|