mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 11:26:51 +00:00
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
(function(module) {
|
|
mifosX.models = _.extend(module, {
|
|
Role: function(data) {
|
|
this.id = data.id;
|
|
this.name = data.name;
|
|
this.description = data.description;
|
|
}
|
|
});
|
|
}(mifosX.models || {}));
|