using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oDownloadSubmission { private string _tel = String.Empty; public string tel { get { return this._tel; } set { this._tel = value; } } private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private DateTime _dateSubmitted = DateTime.MinValue; public DateTime dateSubmitted { get { return this._dateSubmitted; } set { this._dateSubmitted = value; } } private string _name = String.Empty; public string name { get { return this._name; } set { this._name = value; } } private string _email = String.Empty; public string email { get { return this._email; } set { this._email = value; } } }