using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oTaskSnapshot { 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 _version = 0; public int version { get { return this._version; } set { this._version = value; } } private int _createdByUserId = 0; public int createdByUserId { get { return this._createdByUserId; } set { this._createdByUserId = value; } } private DateTime _dateCreated = DateTime.MinValue; public DateTime dateCreated { get { return this._dateCreated; } set { this._dateCreated = value; } } private bool _isActive = false; public bool isActive { get { return this._isActive; } set { this._isActive = value; } } private string _fileName = String.Empty; public string fileName { get { return this._fileName; } set { this._fileName = value; } } private string _customerCode = String.Empty; public string customerCode { get { return this._customerCode; } set { this._customerCode = value; } } private string _sourcePath = String.Empty; public string sourcePath { get { return this._sourcePath; } set { this._sourcePath = value; } } }