taskeep-app/models/IEntity.ts
2025-07-22 14:04:38 +02:00

5 lines
92 B
TypeScript

// Example entity type
export interface IEntity {
id?: number;
[key: string]: any;
}