LZBEmojiModel.h 537 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // LZBEmojiModel.h
  3. // LZBKeyBoardView
  4. //
  5. // demo地址:https://github.com/lzbgithubcode/LZBKeyBoardView.git
  6. // Created by zibin on 16/12/6.
  7. // Copyright © 2016年 apple. All rights reserved.
  8. //
  9. #import <Foundation/Foundation.h>
  10. @interface LZBEmojiModel : NSObject
  11. /**
  12. * 表情的文字描述
  13. */
  14. @property (nonatomic, strong) NSString *desc;
  15. /**
  16. * 表情的png图片名称
  17. */
  18. @property (nonatomic, strong) NSString *png;
  19. /**
  20. * emoji表情的16进制编码
  21. */
  22. @property (nonatomic, strong) NSString *code;
  23. @end