prokuranepal/inventory_app

View on GitHub
src/models/contact.js

Summary

Maintainability
A
1 hr
Test Coverage
A
100%
class Contact {
    constructor(id, name, phoneNumber, address
    ) {
        this.id = id;
        this.name = name;
        this.phoneNumber = phoneNumber;
        this.address = address;
    }
}
export default Contact;