You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
519 B
31 lines
519 B
![]()
2 years ago
|
//
|
||
|
// HomeHeaderView.h
|
||
|
// LekangGuard
|
||
|
//
|
||
|
// Created by ecell on 2022/10/14.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface HomeHeaderView : UIView
|
||
|
|
||
|
/// 设备信息
|
||
|
@property (nonatomic ,strong) DeviceModel *devicemodel;
|
||
|
|
||
|
/// banner图
|
||
|
@property (nonatomic ,strong) NSArray *bannerArr;
|
||
|
|
||
|
@property (nonatomic ,strong) LatestLocationModel *laLoModel;
|
||
|
|
||
|
/// 是否有默认设备
|
||
|
@property (nonatomic ,assign) BOOL isDev;
|
||
|
|
||
|
/// 微聊消息未读数
|
||
|
- (void)GetUnreadTotal;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|