satupeta-main/shared/types/map-source.ts
2026-02-23 12:21:05 +07:00

14 lines
258 B
TypeScript
Executable File

import { Credential } from "./credential";
export interface MapSource {
id: string;
name: string;
description: string;
credential: Credential;
url: string;
is_active: boolean;
is_deleted: boolean;
created_at: string;
updated_at: string;
}