using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oFileExplorerConfig { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _roleView = 0; public int roleView { get { return this._roleView; } set { this._roleView = value; } } private int _roleAdd = 0; public int roleAdd { get { return this._roleAdd; } set { this._roleAdd = value; } } private int _roleDelete = 0; public int roleDelete { get { return this._roleDelete; } set { this._roleDelete = value; } } private int _canvasId = 0; public int canvasId { get { return this._canvasId; } set { this._canvasId = value; } } private int _maxFileSize = 0; public int maxFileSize { get { return this._maxFileSize; } set { this._maxFileSize = value; } } private int _pageSize = 0; public int pageSize { get { return this._pageSize; } set { this._pageSize = value; } } private bool _allowPaging = false; public bool allowPaging { get { return this._allowPaging; } set { this._allowPaging = value; } } }