7 lines
88 B
TypeScript
7 lines
88 B
TypeScript
export interface Album {
|
|
id: number;
|
|
name: string;
|
|
path: string;
|
|
uri: string;
|
|
}
|