using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace framework_library { [Serializable] public class oDispatchType { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private string _dispatchType = String.Empty; public string dispatchType { get { return this._dispatchType; } set { this._dispatchType = value; } } } }