using System;
namespace WebAPI.Areas.HelpPage
{
    /// 
    /// This represents an image sample on the help page. There's a display template named ImageSample associated with this class.
    /// 
    public class ImageSample
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The URL of an image.
        public ImageSample(string src)
        {
            if (src == null)
            {
                throw new ArgumentNullException("src");
            }
            Src = src;
        }
        public string Src { get; private set; }
        public override bool Equals(object obj)
        {
            ImageSample other = obj as ImageSample;
            return other != null && Src == other.Src;
        }
        public override int GetHashCode()
        {
            return Src.GetHashCode();
        }
        public override string ToString()
        {
            return Src;
        }
    }
}