using MediaBrowser.Controller.Entities;
using System;
namespace MediaBrowser.Plugins.Trailers
{
    /// 
    /// This is a stub class used to hold information about a trailer
    /// 
    public class TrailerInfo
    {
        /// 
        /// Gets or sets the video.
        /// 
        /// The video.
        public Trailer Video { get; set; }
        /// 
        /// Gets or sets the image URL.
        /// 
        /// The image URL.
        public string ImageUrl { get; set; }
        /// 
        /// Gets or sets the hd image URL.
        /// 
        /// The hd image URL.
        public string HdImageUrl { get; set; }
        /// 
        /// Gets or sets the trailer URL.
        /// 
        /// The trailer URL.
        public string TrailerUrl { get; set; }
        /// 
        /// Gets or sets the post date.
        /// 
        /// The post date.
        public DateTime PostDate { get; set; }
        /// 
        /// Initializes a new instance of the  class.
        /// 
        public TrailerInfo()
        {
            Video = new Trailer();
        }
    }
}