refactor: stop using geodata entity type (#17444)

This commit is contained in:
Jason Rasmussen
2025-04-08 00:15:43 -04:00
committed by GitHub
parent b352cf3336
commit 8203b6c450
4 changed files with 11 additions and 20 deletions
@@ -1,13 +0,0 @@
export class GeodataPlacesEntity {
id!: number;
name!: string;
longitude!: number;
latitude!: number;
countryCode!: string;
admin1Code!: string;
admin2Code!: string;
admin1Name!: string;
admin2Name!: string;
alternateNames!: string;
modificationDate!: Date;
}