Initial commit: LACA parking management system

This commit is contained in:
2025-08-13 10:05:36 +07:00
commit 8b07467b61
275 changed files with 66828 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
export class CSVRow {
place_id?: string;
name?: string;
description?: string;
is_spending_on_ads?: string;
reviews?: string;
rating?: string;
competitors?: string;
website?: string;
phone?: string;
can_claim?: string;
owner_name?: string;
owner_profile_link?: string;
featured_image?: string;
main_category?: string;
categories?: string;
workday_timing?: string;
is_temporarily_closed?: string;
closed_on?: string;
address?: string;
review_keywords?: string;
link?: string;
query?: string;
lat?: number;
lng?: number;
city?: string;
district?: string;
ward?: string;
open?: string;
close?: string;
}