1234567891011121314151617181920212223242526272829303132333435 |
- //
- // NoticeFindModel.h
- // smartRhino
- //
- // Created by taidi on 2019/12/10.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol NoticeFindModel
- @end
- /// 移动文件夹model
- @interface NoticeFindModel : BaseModel
- /// 文件夹ID
- @property (nonatomic,assign) NSInteger Id;
- /// 是否禁用
- @property (nonatomic,assign) BOOL IsDisable;
- ///是否存在下级文件夹
- @property (nonatomic,assign) BOOL IsFolder;
- ///
- @property (nonatomic,assign) NSInteger RoleId;
- /// 文件夹名称
- @property (nonatomic,strong) NSString * Name;
- /// 共享范围
- @property (nonatomic, copy) NSString *EnjoyUser;
- @end
- NS_ASSUME_NONNULL_END
|