Skip to content

Instantly share code, notes, and snippets.

@mashiox
Created February 27, 2016 21:19
Show Gist options
  • Save mashiox/34796cc5eb94704e8dbd to your computer and use it in GitHub Desktop.
Save mashiox/34796cc5eb94704e8dbd to your computer and use it in GitHub Desktop.
SMBC Object
SMBC = {
Track: function(name, pass, email, access){
this._name = name;
this._password = Package.sha.SHA256(pass)
this._email = email;
this._access = access;
},
}
SMBC.Track.prototype.getName = function(){
return this._name;
};
SMBC.Track.prototype.getPassword = function(){
return this._password;
};
SMBC.Track.prototype.getEmail = function(){
return this._email;
};
SMBC.Track.prototype.getAccess = function(){
return this._access;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment