Stackedit/public/res/classes/Provider.js

10 lines
228 B
JavaScript
Raw Normal View History

2013-06-22 23:48:57 +00:00
define(function() {
function Provider(providerId, providerName) {
this.providerId = providerId;
this.providerName = providerName;
2013-12-23 22:33:33 +00:00
this.isPublishEnabled = true;
2013-06-22 23:48:57 +00:00
}
return Provider;
});