Geen omschrijving

FKBadgeMessage.h 458B

123456789101112131415161718192021222324
  1. //
  2. // MessageBadge.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 15/7/31.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. * 系统消息、拼单消息和评论的角标
  11. */
  12. @interface FKBadgeMessage : NSObject
  13. @property (nonatomic, strong) NSString *systemBadge;
  14. @property (nonatomic, strong) NSString *pindanBadge;
  15. @property (nonatomic, strong) NSString *commentBadge;
  16. - (NSInteger)totalBadge;
  17. @end