using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oLoyaltyStore { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _storeName = String.Empty; public string storeName { get {return this._storeName;} set {this._storeName = value;} } private string _storeCode = String.Empty; public string storeCode { get {return this._storeCode;} set {this._storeCode = value;} } }