MMBaseRichContentModel.h 435 B

1234567891011121314151617181920
  1. //
  2. // MMBaseRichContentModel.h
  3. // RichTextEditDemo
  4. //
  5. // Created by aron on 2017/7/25.
  6. // Copyright © 2017年 aron. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. typedef NS_ENUM(NSInteger, MMRichContentType) {
  10. MMRichContentTypeImage = 1,
  11. MMRichContentTypeText,
  12. MMRichContentTypeTitle,
  13. };
  14. @interface MMBaseRichContentModel : NSObject
  15. @property (nonatomic, assign) MMRichContentType richContentType;
  16. @end