prokuranepal/inventory_app

View on GitHub
src/models/category.js

Summary

Maintainability
A
1 hr
Test Coverage
A
100%
class Category {
    constructor(id, title, color, icon) {
        this.id = id;
        this.title = title;
        this.color = color;
        this.icon = icon
    }
}

export default Category;