using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovLoyaltyDetail { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _storeId = 0; public int storeId { get {return this._storeId;} set {this._storeId = value;} } private int _groupId = 0; public int groupId { get {return this._groupId;} set {this._groupId = value;} } private DateTime _dateCreated = DateTime.MinValue; public DateTime dateCreated { get {return this._dateCreated;} set {this._dateCreated = value;} } private DateTime _dateUpdated = DateTime.MinValue; public DateTime dateUpdated { get {return this._dateUpdated;} set {this._dateUpdated = value;} } private bool _optIn = false; public bool optIn { get {return this._optIn;} set {this._optIn = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _storeCode = String.Empty; public string storeCode { get {return this._storeCode;} set {this._storeCode = value;} } private string _storeName = String.Empty; public string storeName { get {return this._storeName;} set {this._storeName = value;} } private string _groupCode = String.Empty; public string groupCode { get {return this._groupCode;} set {this._groupCode = value;} } private string _groupName = String.Empty; public string groupName { get {return this._groupName;} set {this._groupName = value;} } private string _name = String.Empty; public string name { get {return this._name;} set {this._name = value;} } private string _surname = String.Empty; public string surname { get {return this._surname;} set {this._surname = value;} } private string _idNumber = String.Empty; public string idNumber { get {return this._idNumber;} set {this._idNumber = value;} } private string _mobileNo = String.Empty; public string mobileNo { get {return this._mobileNo;} set {this._mobileNo = value;} } private string _email = String.Empty; public string email { get {return this._email;} set {this._email = value;} } private string _loyaltyNumber = String.Empty; public string loyaltyNumber { get {return this._loyaltyNumber;} set {this._loyaltyNumber = value;} } }