using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oGallery { private string _description = String.Empty; public string description { get {return this._description;} set {this._description = value;} } private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _catId = 0; public int catId { get {return this._catId;} set {this._catId = value;} } private int _pictureTypeId = 0; public int pictureTypeId { get {return this._pictureTypeId;} set {this._pictureTypeId = value;} } private int _sequence = 0; public int sequence { get {return this._sequence;} set {this._sequence = value;} } private DateTime _dateSaved = DateTime.MinValue; public DateTime dateSaved { get {return this._dateSaved;} set {this._dateSaved = 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 _fileName = String.Empty; public string fileName { get {return this._fileName;} set {this._fileName = value;} } }