cellsysArt/artCounty.js

10 lines
193 B
JavaScript
Raw Normal View History

2024-12-26 10:28:43 +08:00
class ArtCounty {
constructor(params = {}) {
this.id = params.id;
this.name = params.name;
this.alpha3Code = params.alpha_3_code;
}
}
export default ArtCounty;