using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oAccessPermissionGroups { private int _groupID = 0; public int groupID { get {return this._groupID;} set {this._groupID = value;} } private bool _groupIsActive = false; public bool groupIsActive { get {return this._groupIsActive;} set {this._groupIsActive = value;} } private bool _groupIsPurged = false; public bool groupIsPurged { get {return this._groupIsPurged;} set {this._groupIsPurged = value;} } private bool _groupIsSystemGroup = false; public bool groupIsSystemGroup { get {return this._groupIsSystemGroup;} set {this._groupIsSystemGroup = value;} } private string _groupName = String.Empty; public string groupName { get {return this._groupName;} set {this._groupName = value;} } private string _groupDescription = String.Empty; public string groupDescription { get {return this._groupDescription;} set {this._groupDescription = value;} } }