]> cgit.babelmonkeys.de Git - socialXMPP.git/blob - scripts/classes.js
c991a8af77d0d89cd16364508e8eea226daa5db3
[socialXMPP.git] / scripts / classes.js
1 Tune = function() {
2     this.artist ='';
3     this.length = 0;
4     this.rating = 1;
5     this.source = '';
6     this.title = '';
7     this.track = 1;
8     this.uri = '';
9 }
10
11 Buddy = function(name, jid) {
12     this.name = name;
13     this.jid = jid;
14     this.vCard = '';
15     this.tune = new Tune();
16 };
17