using MediaBrowser.Controller.Entities;
using System;
namespace MediaBrowser.Controller.Session
{
    public class PlaybackStopInfo
    {
        /// 
        /// Gets or sets the item.
        /// 
        /// The item.
        public BaseItem Item { get; set; }
        /// 
        /// Gets or sets the session id.
        /// 
        /// The session id.
        public Guid SessionId { get; set; }
        /// 
        /// Gets or sets the position ticks.
        /// 
        /// The position ticks.
        public long? PositionTicks { get; set; }
    }
}