1234567891011121314151617181920 |
- //
- // AppointmentManageViewModel.h
- // LN_School
- //
- // Created by 张嵘 on 2019/7/31.
- // Copyright © 2019 Danson. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface AppointmentManageViewModel : NSObject
- @property (nonatomic, strong) NSMutableArray *controllers;
- @property (nonatomic, strong) NSMutableArray *titles;
- @property (nonatomic, assign) CGSize titleSize;
- @property (nonatomic, assign) BOOL headerStop;
- @end
- NS_ASSUME_NONNULL_END
|