Files
jellyfin-jellyfin-1/MediaBrowser.Model/Sync/SyncJobCreationResult.cs

16 lines
326 B
C#
Raw Normal View History

2015-01-27 17:45:59 -05:00
using System.Collections.Generic;
2014-07-26 13:30:15 -04:00
namespace MediaBrowser.Model.Sync
{
public class SyncJobCreationResult
{
public SyncJob Job { get; set; }
2017-08-19 15:43:35 -04:00
public SyncJobItem[] JobItems { get; set; }
2015-01-27 17:45:59 -05:00
public SyncJobCreationResult()
{
2017-08-19 15:43:35 -04:00
JobItems = new SyncJobItem[] { };
2015-01-27 17:45:59 -05:00
}
2014-07-26 13:30:15 -04:00
}
}