using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oFileExplorerMetaData { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _canvasId = 0; public int canvasId { get { return this._canvasId; } set { this._canvasId = value; } } private int _explorerType = 0; public int explorerType { get { return this._explorerType; } set { this._explorerType = value; } } private DateTime _date = DateTime.MinValue; public DateTime date { get { return this._date; } set { this._date = value; } } private string _fileSize = String.Empty; public string fileSize { get { return this._fileSize; } set { this._fileSize = value; } } private string _fileType = String.Empty; public string fileType { get { return this._fileType; } set { this._fileType = value; } } private string _path = String.Empty; public string path { get { return this._path; } set { this._path = value; } } private string _name = String.Empty; public string name { get { return this._name; } set { this._name = value; } } private string _uploadedBy = String.Empty; public string uploadedBy { get { return this._uploadedBy; } set { this._uploadedBy = value; } } private string _origin = String.Empty; public string origin { get { return this._origin; } set { this._origin = value; } } }