Files
HKSingleParty/03_source/mobile/src/models/Location.ts
2025-05-28 09:55:51 +08:00

16 lines
237 B
TypeScript

export interface Location {
id: number;
name: string;
lat: number;
lng: number;
center?: boolean;
}
export interface LocationState {
locations: Location[];
}
export const initialState: LocationState = {
locations: [],
};