14 lines
333 B
JavaScript
14 lines
333 B
JavaScript
class Country {
|
|
constructor(row = {}) {
|
|
this.id = row.id;
|
|
this.country_code = row.country_code;
|
|
this.country_name = row.country_name;
|
|
this.created_at = row.created_at;
|
|
this.updated_at = row.updated_at;
|
|
this.created_by = row.created_by;
|
|
this.updated_by = row.updated_by;
|
|
}
|
|
}
|
|
|
|
module.exports = Country;
|