jellyfin-server/MediaBrowser.Model/Sync/SyncJobItem.cs

56 lines
1.5 KiB
C#
Raw Normal View History

2014-12-13 03:56:30 +00:00
using System;
2014-07-26 17:30:15 +00:00
namespace MediaBrowser.Model.Sync
{
public class SyncJobItem
{
/// <summary>
/// Gets or sets the identifier.
/// </summary>
/// <value>The identifier.</value>
public string Id { get; set; }
/// <summary>
/// Gets or sets the job identifier.
/// </summary>
/// <value>The job identifier.</value>
public string JobId { get; set; }
/// <summary>
/// Gets or sets the item identifier.
/// </summary>
/// <value>The item identifier.</value>
public string ItemId { get; set; }
/// <summary>
/// Gets or sets the target identifier.
/// </summary>
/// <value>The target identifier.</value>
public string TargetId { get; set; }
/// <summary>
/// Gets or sets the output path.
/// </summary>
/// <value>The output path.</value>
public string OutputPath { get; set; }
/// <summary>
/// Gets or sets the status.
/// </summary>
/// <value>The status.</value>
2014-12-13 03:56:30 +00:00
public SyncJobItemStatus Status { get; set; }
2014-07-26 17:30:15 +00:00
/// <summary>
/// Gets or sets the current progress.
/// </summary>
/// <value>The current progress.</value>
2014-12-13 03:56:30 +00:00
public double? Progress { get; set; }
/// <summary>
/// Gets or sets the date created.
/// </summary>
/// <value>The date created.</value>
public DateTime DateCreated { get; set; }
2014-07-26 17:30:15 +00:00
}
}