using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oModuleCustomPath { private int _moduleId = 0; public int moduleId { get {return this._moduleId;} set {this._moduleId = value;} } private string _customPath = String.Empty; public string customPath { get {return this._customPath;} set {this._customPath = value;} } }