Files
JavaScriptServices/samples/angular/MusicStore/wwwroot/ng-app/models/models.ts
SteveSandersonMS f693bd60e3 Initial state
2015-11-02 10:30:36 -08:00

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;
}