CentralBackend/models/Country.js
2025-12-06 11:14:55 +01:00

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;