TextEntity.h 498 B

1234567891011121314151617181920
  1. //
  2. // TextEntity.h
  3. // JActivityList
  4. //
  5. // Created by juanmao on 15/12/7.
  6. // Copyright © 2015年 juanmao. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface TextEntity : NSObject
  10. @property(nonatomic, assign)int textId;
  11. @property(nonatomic, strong)NSString *textName;
  12. @property(nonatomic, strong)NSString *textContent;
  13. ///是否展开状态,默认No
  14. @property(nonatomic, assign)BOOL isShowMoreText;
  15. - (instancetype)initWithDict:(NSDictionary *)dict;
  16. @end