using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oGalleryCategory { private string _caption = String.Empty; public string caption { get {return this._caption;} set {this._caption = value;} } private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _parentId = 0; public int parentId { get {return this._parentId;} set {this._parentId = value;} } private int _sequence = 0; public int sequence { get {return this._sequence;} set {this._sequence = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _category = String.Empty; public string category { get {return this._category;} set {this._category = value;} } }