Last active
June 19, 2018 12:39
-
-
Save Sampath-Lokuge/d3248cd1cfba3a880bc2189ad9043296 to your computer and use it in GitHub Desktop.
PlayList.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { MediaItem } from "./media-item"; | |
export interface PlayList { | |
id: number; | |
text: string; | |
imageUrl: string; | |
mediaItems: MediaItem[]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment