using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oRSSFeed { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private DateTime _dateCreated = DateTime.MinValue; public DateTime dateCreated { get {return this._dateCreated;} set {this._dateCreated = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _title = String.Empty; public string title { get {return this._title;} set {this._title = value;} } private string _feedPath = String.Empty; public string feedPath { get {return this._feedPath;} set {this._feedPath = value;} } }