mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 23:35:25 +03:00
sync updates
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using MediaBrowser.Model.Dto;
|
||||
|
||||
namespace MediaBrowser.Model.Sync
|
||||
{
|
||||
@@ -27,12 +29,18 @@ namespace MediaBrowser.Model.Sync
|
||||
/// </summary>
|
||||
/// <value>The name of the item.</value>
|
||||
public string ItemName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the media source identifier.
|
||||
/// </summary>
|
||||
/// <value>The media source identifier.</value>
|
||||
public string MediaSourceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the media source.
|
||||
/// </summary>
|
||||
/// <value>The media source.</value>
|
||||
public MediaSourceInfo MediaSource { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the target identifier.
|
||||
@@ -74,9 +82,15 @@ namespace MediaBrowser.Model.Sync
|
||||
/// <value>The primary image tag.</value>
|
||||
public string PrimaryImageTag { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether [requires conversion].
|
||||
/// Gets or sets the temporary path.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if [requires conversion]; otherwise, <c>false</c>.</value>
|
||||
public bool RequiresConversion { get; set; }
|
||||
/// <value>The temporary path.</value>
|
||||
public string TemporaryPath { get; set; }
|
||||
public List<ItemFileInfo> AdditionalFiles { get; set; }
|
||||
|
||||
public SyncJobItem()
|
||||
{
|
||||
AdditionalFiles = new List<ItemFileInfo>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user