1 Sys.Services.ProfileGroup = function Sys$Services$ProfileGroup(properties) {
4 var e = Function._validateParams(arguments, [
5 {name: "properties", mayBeNull: true, optional: true}
6 ]);
7 if (e) throw e;
8 if (properties) {
9 for (var property in properties) {
10 this[property] = properties[property];
11 }
12 }
13 }