14 lines
396 B
JavaScript
14 lines
396 B
JavaScript
class ContactPojo {
|
|
|
|
constructor(phoneNumber, passportNumber, lastName, firstName, mail, store, ipCountry) {
|
|
this.phoneNumber = phoneNumber;
|
|
this.passportNumber = passportNumber;
|
|
this.lastName = lastName;
|
|
this.firstName = firstName;
|
|
this.mail = mail;
|
|
this.store = store;
|
|
this.ipCountry = ipCountry;
|
|
}
|
|
}
|
|
|
|
module.exports = ContactPojo |