- Update all entities to include UID field - Convert components to use UID for navigation and links - Update services to support UID-based API calls - Add slug utilities for UID extraction - Update store to handle UID fields - Fix routing throughout all components
7 lines
127 B
TypeScript
7 lines
127 B
TypeScript
export interface Area {
|
|
id?: number;
|
|
uid?: string;
|
|
name: string;
|
|
description?: string;
|
|
active?: boolean;
|
|
}
|