Files
caszl-next/app/types/album.ts

7 lines
88 B
TypeScript
Raw Normal View History

2023-11-01 17:27:06 +08:00
export interface Album {
id: number;
name: string;
path: string;
uri: string;
}