tududi/frontend/entities/Area.ts
antanst 6cf79c322d Update frontend to use UID-based routing
- 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
2025-08-06 15:54:45 +03:00

7 lines
127 B
TypeScript

export interface Area {
id?: number;
uid?: string;
name: string;
description?: string;
active?: boolean;
}