using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.Sync
{
    public class LocalItem
    {
        /// 
        /// Gets or sets the item.
        /// 
        /// The item.
        public BaseItemDto Item { get; set; }
        /// 
        /// Gets or sets the local path.
        /// 
        /// The local path.
        public string LocalPath { get; set; }
        /// 
        /// Gets or sets the server identifier.
        /// 
        /// The server identifier.
        public string ServerId { get; set; }
        /// 
        /// Gets or sets the unique identifier.
        /// 
        /// The unique identifier.
        public string Id { get; set; }
        /// 
        /// Gets or sets the item identifier.
        /// 
        /// The item identifier.
        public string ItemId { get; set; }
    }
}