using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oAttachment { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _moduleId = 0; public int moduleId { get { return this._moduleId; } set { this._moduleId = value; } } private int _typeId = 0; public int typeId { get { return this._typeId; } set { this._typeId = value; } } private int _entityId = 0; public int entityId { get { return this._entityId; } set { this._entityId = value; } } private int _sequence = 0; public int sequence { get { return this._sequence; } set { this._sequence = value; } } private int _userIdSaved = 0; public int userIdSaved { get { return this._userIdSaved; } set { this._userIdSaved = value; } } private int _userIdUpdated = 0; public int userIdUpdated { get { return this._userIdUpdated; } set { this._userIdUpdated = value; } } private DateTime _dateSaved = DateTime.MinValue; public DateTime dateSaved { get { return this._dateSaved; } set { this._dateSaved = value; } } private DateTime _dateUpdated = DateTime.MinValue; public DateTime dateUpdated { get { return this._dateUpdated; } set { this._dateUpdated = value; } } private bool _isActive = false; public bool isActive { get { return this._isActive; } set { this._isActive = value; } } private bool _isPrimary = false; public bool isPrimary { get { return this._isPrimary; } set { this._isPrimary = value; } } private string _folderName = String.Empty; public string folderName { get { return this._folderName; } set { this._folderName = value; } } private string _display = String.Empty; public string display { get { return this._display; } set { this._display = value; } } private string _fileName = String.Empty; public string fileName { get { return this._fileName; } set { this._fileName = value; } } private string _sourcePath = String.Empty; public string sourcePath { get { return this._sourcePath; } set { this._sourcePath = value; } } private string _fieldName = String.Empty; public string fieldName { get { return this._fieldName; } set { this._fieldName = value; } } private string _fileMetadata = String.Empty; public string fileMetadata { get { return this._fileMetadata; } set { this._fileMetadata = value; } } }