Files
hydra/src/types/theme.types.ts
2025-11-10 22:55:17 +00:00

13 lines
232 B
TypeScript

export interface Theme {
id: string;
name: string;
author?: string;
authorName?: string;
isActive: boolean;
code: string;
hasCustomSound?: boolean;
originalSoundPath?: string;
createdAt: Date;
updatedAt: Date;
}