2
0

WFCUStickerItem.h 383 B

123456789101112131415
  1. //
  2. // StickerItem.h
  3. // WildFireChat
  4. //
  5. // Created by heavyrain lee on 2018/8/28.
  6. // Copyright © 2018 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface WFCUStickerItem : NSObject
  10. @property(nonatomic, strong)NSString *key;
  11. @property(nonatomic, strong)NSString *tabIcon;
  12. @property(nonatomic, strong)NSMutableArray<NSString *> *stickerPaths;
  13. @end