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; public class Feedback { #region Private Members private string _name; private string _email; private string _position; private string _organisation; private string _postcode; private string _phone; private string _notes; #endregion #region Public Properties public string Name { get { return _name; } set { _name = value; } } public string Email { get { return _email; } set { _email = value; } } public string Position { get { return _position; } set { _position = value; } } public string Organisation { get { return _organisation; } set { _organisation = value; } } public string Postcode { get { return _postcode; } set { _postcode = value; } } public string Phone { get { return _phone; } set { _phone = value; } } public string Notes { get { return _notes; } set { _notes = value; } } #endregion }