12345678910111213141516171819202122232425262728 |
- //
- // FKSessionListViewModel.h
- // FirstLink
- //
- // Created by ascii on 15/8/4.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "FKMessageManager.h"
- @interface FKSessionListViewModel : NSObject
- - (UIImage *)imageAtIndex:(NSInteger)index;
- - (NSString *)titleAtIndex:(NSInteger)index;
- - (BOOL)isSystemBadegLessThanOrEqualZero;
- - (BOOL)isPindanBadegLessThanOrEqualZero;
- - (BOOL)isCommentBadgeLessThanOrEqualZero;
- - (NSString *)systemBadge;
- - (NSString *)pindanBadge;
- - (NSString *)commentBadge;
- - (NSString *)latestCommentText;
- - (NSString *)latestCustomerText;
- @end
|