type SubdivisionProps = {
code: string
name: string
country: string
}
export class Subdivision {
constructor({ code, name, country }: SubdivisionProps) {
this.code = code
this.name = name
this.country = country