using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; /// /// Summary description for Ads /// public class Ads { public Ads() { // // TODO: Add constructor logic here // } int _ID; public int ID { get { return _ID; } set { _ID = value; } } string _adsLink; public string AdsLink { get { return _adsLink; } set { _adsLink = value; } } string _adsPath; public string AdsPath { get { return _adsPath; } set { _adsPath = value; } } }