FSPlaylistItem.h 570 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * This file is part of the FreeStreamer project,
  3. * (C)Copyright 2011-2013 Matias Muhonen.
  4. * See the file ''LICENSE'' for using the code.
  5. */
  6. #import <Foundation/Foundation.h>
  7. /**
  8. * A playlist item. Each item has a title and url.
  9. */
  10. @interface FSPlaylistItem : NSObject {
  11. NSString *_title;
  12. NSString *_url;
  13. }
  14. /**
  15. * The title of the playlist.
  16. */
  17. @property (nonatomic,copy) NSString *title;
  18. /**
  19. * The URL of the playlist.
  20. */
  21. @property (nonatomic,copy) NSString *url;
  22. /**
  23. * The NSURL of the playlist.
  24. */
  25. @property (weak, readonly) NSURL *nsURL;
  26. @end