mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-24 02:30:13 +00:00
Initial state
This commit is contained in:
16
samples/angular/MusicStore/wwwroot/ng-app/models/models.ts
Normal file
16
samples/angular/MusicStore/wwwroot/ng-app/models/models.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user