using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oGoogleUser { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _userId = 0; public int userId { get {return this._userId;} set {this._userId = value;} } private string _name = String.Empty; public string name { get {return this._name;} set {this._name = value;} } private string _email = String.Empty; public string email { get {return this._email;} set {this._email = value;} } private string _givenName = String.Empty; public string givenName { get {return this._givenName;} set {this._givenName = value;} } private string _familyName = String.Empty; public string familyName { get {return this._familyName;} set {this._familyName = value;} } private string _imageURL = String.Empty; public string imageURL { get {return this._imageURL;} set {this._imageURL = value;} } private string _profileId = String.Empty; public string profileId { get {return this._profileId;} set {this._profileId = value;} } }