123456789101112131415161718192021222324 |
- //
- // MessageBadge.h
- // FirstLink
- //
- // Created by ascii on 15/7/31.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- /**
- * 系统消息、拼单消息和评论的角标
- */
- @interface FKBadgeMessage : NSObject
- @property (nonatomic, strong) NSString *systemBadge;
- @property (nonatomic, strong) NSString *pindanBadge;
- @property (nonatomic, strong) NSString *commentBadge;
- - (NSInteger)totalBadge;
- @end
|