using MediaBrowser.Model.Dto;
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 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; }
    }
}