/**
* @module Products Domain
* @fileoverview StyleEntity stub for portfolio documentation.
* @class StyleEntity
*/
class StyleEntity {
constructor() {
this.id = null;
this.name = null;
}
}
module.exports = StyleEntity;
Source