using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSurfaceSignature { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _itemId = 0; public int itemId { get { return this._itemId; } set { this._itemId = value; } } private int _fieldId = 0; public int fieldId { get { return this._fieldId; } set { this._fieldId = value; } } private DateTime _signatureDate = DateTime.MinValue; public DateTime signatureDate { get { return this._signatureDate; } set { this._signatureDate = value; } } private DateTime _photoDate = DateTime.MinValue; public DateTime photoDate { get { return this._photoDate; } set { this._photoDate = value; } } private bool _isActive = false; public bool isActive { get { return this._isActive; } set { this._isActive = value; } } private string _authoritive = String.Empty; public string authoritive { get { return this._authoritive; } set { this._authoritive = value; } } private string _signatureFile = String.Empty; public string signatureFile { get { return this._signatureFile; } set { this._signatureFile = value; } } private string _photoFile = String.Empty; public string photoFile { get { return this._photoFile; } set { this._photoFile = value; } } }