Files
Chromacase/front/models/SearchHistory.ts
2023-06-17 07:01:23 +01:00

11 lines
200 B
TypeScript

import Model from './Model';
interface SearchHistory extends Model {
query: string;
type: 'song' | 'artist' | 'album' | 'genre';
userId: number;
timestamp: Date;
}
export default SearchHistory;