No Description

FKSessionListViewModel.h 626B

12345678910111213141516171819202122232425262728
  1. //
  2. // FKSessionListViewModel.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 15/8/4.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "FKMessageManager.h"
  10. @interface FKSessionListViewModel : NSObject
  11. - (UIImage *)imageAtIndex:(NSInteger)index;
  12. - (NSString *)titleAtIndex:(NSInteger)index;
  13. - (BOOL)isSystemBadegLessThanOrEqualZero;
  14. - (BOOL)isPindanBadegLessThanOrEqualZero;
  15. - (BOOL)isCommentBadgeLessThanOrEqualZero;
  16. - (NSString *)systemBadge;
  17. - (NSString *)pindanBadge;
  18. - (NSString *)commentBadge;
  19. - (NSString *)latestCommentText;
  20. - (NSString *)latestCustomerText;
  21. @end