using System;
namespace MediaBrowser.Controller.Library
{
    public class IntroInfo
    {
        /// 
        /// Gets or sets the path.
        /// 
        /// The path.
        public string Path { get; set; }
        /// 
        /// Gets or sets the item id.
        /// 
        /// The item id.
        public Guid? ItemId { get; set; }
    }
}