1234567891011121314151617181920 |
- //
- // WorkFlowFileModel.h
- // smartRhino
- //
- // Created by tederen on 2019/12/2.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface WorkFlowFileModel : BaseModel
- @property (nonatomic, copy) NSString *DownloadUrl;
- @property (nonatomic, copy) NSString *PreviewUrl;
- @property (nonatomic, copy) NSString *titleStr;
- @end
- NS_ASSUME_NONNULL_END
|