using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oComplaintStatuses { private int _pkID = 0; public int pkID { get {return this._pkID;} set {this._pkID = value;} } private string _StatusDescription = String.Empty; public string StatusDescription { get {return this._StatusDescription;} set {this._StatusDescription = value;} } }