using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oLoyaltyGroup { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _loyaltyStoreId = 0; public int loyaltyStoreId { get {return this._loyaltyStoreId;} set {this._loyaltyStoreId = value;} } private int _nextSequence = 0; public int nextSequence { get {return this._nextSequence;} set {this._nextSequence = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _groupName = String.Empty; public string groupName { get {return this._groupName;} set {this._groupName = value;} } private string _groupCode = String.Empty; public string groupCode { get {return this._groupCode;} set {this._groupCode = value;} } }