using MediaBrowser.Model.Dto;
using System.Collections.Generic;
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; }
        /// 
        /// Gets or sets the user ids with access.
        /// 
        /// The user ids with access.
        public List UserIdsWithAccess { get; set; }
        public LocalItem()
        {
            UserIdsWithAccess = new List();
        }
    }
}