Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. export class Track{
  2.  
  3. constructor(id: number, title: string, artist: string, duration:number){
  4. this.Id= id;
  5. this.Title= title;
  6. this.Artist= artist;
  7. this.Duration= duration;
  8. }
  9.  
  10. public Id : number;
  11. public Title: string;
  12. public Artist: string;
  13. public Duration: number;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement