usingSystem;namespaceHousingWebApi.Areas.HelpPage{/// <summary>/// This represents an image sample on the help page. There's a display template named ImageSample associated with this class./// </summary>publicclassImageSample{/// <summary>/// Initializes a new instance of the <see cref="ImageSample"/> class./// </summary>/// <param name="src">The URL of an image.</param>publicImageSample(stringsrc){if(src==null){thrownewArgumentNullException("src");}Src=src;}publicstringSrc{get;privateset;}publicoverrideboolEquals(objectobj){ImageSampleother=objasImageSample;returnother!=null&&Src==other.Src;}publicoverrideintGetHashCode(){returnSrc.GetHashCode();}publicoverridestringToString(){returnSrc;}}}