using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oImageMap { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _surfaceItemId = 0; public int surfaceItemId { get {return this._surfaceItemId;} set {this._surfaceItemId = value;} } private int _surfaceFieldId = 0; public int surfaceFieldId { get {return this._surfaceFieldId;} set {this._surfaceFieldId = value;} } private int _posX = 0; public int posX { get {return this._posX;} set {this._posX = value;} } private int _posY = 0; public int posY { get {return this._posY;} set {this._posY = 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 string _imageMapNote = String.Empty; public string imageMapNote { get {return this._imageMapNote;} set {this._imageMapNote = value;} } }