Guest User

Untitled

a guest
Apr 23rd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. // src/client/app/models/ialbum.ts
  2.  
  3. import { ICategory } from './icategory';
  4.  
  5. export interface IAlbum {
  6. _id: string,
  7. name: string,
  8. category: ICategory,
  9. photos: string[]
  10. }
Add Comment
Please, Sign In to add comment