using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oScanAdditionals { private int _ID = 0; public int ID { get {return this._ID;} set {this._ID = value;} } private int _ScanID = 0; public int ScanID { get {return this._ScanID;} set {this._ScanID = value;} } private string _ScanFile = String.Empty; public string ScanFile { get {return this._ScanFile;} set {this._ScanFile = value;} } private string _ScanFilePath = String.Empty; public string ScanFilePath { get {return this._ScanFilePath;} set {this._ScanFilePath = value;} } private string _ScanType = String.Empty; public string ScanType { get {return this._ScanType;} set {this._ScanType = value;} } }