refactor: complete application rewrite with modern UI

This commit is contained in:
sokol
2026-02-19 22:55:26 +03:00
parent 271b530fa1
commit a6cc5a9827
26 changed files with 3036 additions and 794 deletions

13
src/models/types.ts Normal file
View File

@@ -0,0 +1,13 @@
/**
* Base interface for entities with optional ID
*/
export interface Entity {
id?: number;
}
/**
* Named entity with optional ID
*/
export interface NamedEntity extends Entity {
name?: string;
}