using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oRoleSuperUser { private int _pkID = 0; public int pkID { get {return this._pkID;} set {this._pkID = value;} } private int _fkUserID = 0; public int fkUserID { get {return this._fkUserID;} set {this._fkUserID = value;} } private string _Status = String.Empty; public string Status { get {return this._Status;} set {this._Status = value;} } }