mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
17 lines
253 B
TypeScript
17 lines
253 B
TypeScript
export interface Album {
|
|
AlbumId: number;
|
|
Title: string;
|
|
AlbumArtUrl: string;
|
|
}
|
|
|
|
export interface Genre {
|
|
GenreId: number;
|
|
Name: string;
|
|
Description: string;
|
|
}
|
|
|
|
export interface Artist {
|
|
ArtistId: number;
|
|
Name: string;
|
|
}
|