jellyfin/MediaBrowser.Model/Sync/SyncJobCreationResult.cs

16 lines
332 B
C#
Raw Normal View History

2015-01-27 23:45:59 +01:00
using System.Collections.Generic;
2014-07-26 19:30:15 +02:00
namespace MediaBrowser.Model.Sync
{
public class SyncJobCreationResult
{
public SyncJob Job { get; set; }
2015-01-27 23:45:59 +01:00
public List<SyncJobItem> JobItems { get; set; }
public SyncJobCreationResult()
{
JobItems = new List<SyncJobItem>();
}
2014-07-26 19:30:15 +02:00
}
}