#pragma once
#include <string>
#include <map>
#include <vector>
namespace cfg {
    inline const std::map<std::string, std::vector<std::string>> TABLES_NAME {
        {"Agents", {"agent_id","login","password_hash","first_name","last_name","sector_id","last_login","comments","created_at","role"}},
        {"Trackers", {"tracker_id","serial_number","sector_id","status","rental_start","rental_end"}},
        {"Point_History", {"point_id","tracker_id","timestamp","latitude","longitude","altitude","method"}}
    };
}