using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oXRayAdditionals { private int _ID = 0; public int ID { get {return this._ID;} set {this._ID = value;} } private int _XRayID = 0; public int XRayID { get {return this._XRayID;} set {this._XRayID = value;} } private string _XRayFile = String.Empty; public string XRayFile { get {return this._XRayFile;} set {this._XRayFile = value;} } private string _XRayFilePath = String.Empty; public string XRayFilePath { get {return this._XRayFilePath;} set {this._XRayFilePath = value;} } private string _XRayType = String.Empty; public string XRayType { get {return this._XRayType;} set {this._XRayType = value;} } }