mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 17:24:46 +03:00
sync updates
This commit is contained in:
15
MediaBrowser.Model/Sync/CompleteSyncJobInfo.cs
Normal file
15
MediaBrowser.Model/Sync/CompleteSyncJobInfo.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Model.Sync
|
||||
{
|
||||
public class CompleteSyncJobInfo
|
||||
{
|
||||
public SyncJob Job { get; set; }
|
||||
public List<SyncJobItem> JobItems { get; set; }
|
||||
|
||||
public CompleteSyncJobInfo()
|
||||
{
|
||||
JobItems = new List<SyncJobItem>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user