aka RedditBar, Mac OS X menu bar reddit client
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

RedditItem.h 492B

1234567891011121314151617181920
  1. //
  2. // RedditItem.h
  3. // RedditBar
  4. //
  5. // Created by Thomas Buck on 01.12.13.
  6. // Copyright (c) 2013 xythobuz. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface RedditItem : NSObject
  10. @property (atomic, retain) NSString *name;
  11. @property (atomic, retain) NSString *link;
  12. @property (atomic, retain) NSString *comments;
  13. @property (atomic) BOOL isSelf;
  14. +(RedditItem *)itemWithName:(NSString *)name Link:(NSString *)link Comments:(NSString *)comments Self:(BOOL)isSelf;
  15. @end