using MediaBrowser.Model.Dto;
using System;
using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class SyncedItem
{
///
/// Gets or sets the server identifier.
///
/// The server identifier.
public string ServerId { get; set; }
///
/// Gets or sets the synchronize job identifier.
///
/// The synchronize job identifier.
public string SyncJobId { get; set; }
///
/// Gets or sets the name of the synchronize job.
///
/// The name of the synchronize job.
public string SyncJobName { get; set; }
///
/// Gets or sets the synchronize job date created.
///
/// The synchronize job date created.
public DateTime SyncJobDateCreated { get; set; }
///
/// Gets or sets the synchronize job item identifier.
///
/// The synchronize job item identifier.
public string SyncJobItemId { get; set; }
///
/// Gets or sets the name of the original file.
///
/// The name of the original file.
public string OriginalFileName { get; set; }
///
/// Gets or sets the item.
///
/// The item.
public BaseItemDto Item { get; set; }
///
/// Gets or sets the user identifier.
///
/// The user identifier.
public string UserId { get; set; }
///
/// Gets or sets the additional files.
///
/// The additional files.
public List AdditionalFiles { get; set; }
public SyncedItem()
{
AdditionalFiles = new List();
}
}
}