mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 07:10:45 +00:00
enforce user access to offline items
This commit is contained in:
parent
256990ac7b
commit
655c9ea7a1
10 changed files with 80 additions and 12 deletions
|
|
@ -5,12 +5,14 @@ namespace MediaBrowser.Model.Sync
|
|||
public class SyncDataRequest
|
||||
{
|
||||
public List<string> LocalItemIds { get; set; }
|
||||
public List<string> OfflineUserIds { get; set; }
|
||||
|
||||
public string TargetId { get; set; }
|
||||
|
||||
public SyncDataRequest()
|
||||
{
|
||||
LocalItemIds = new List<string>();
|
||||
OfflineUserIds = new List<string>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue