1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| //
| // PBPanoramaListModel.h
| // IphoneBIMe
| //
| // Created by ZhangJF on 2022/10/21.
| // Copyright © 2022 ProBIM. All rights reserved.
| //
|
| #import <Foundation/Foundation.h>
|
| NS_ASSUME_NONNULL_BEGIN
|
| @interface PBPanoramaListModel : NSObject
| @property (nonatomic, copy) NSString *BackGroundColor;
| @property (nonatomic, copy) NSString *FontColor;
| @property (nonatomic, copy) NSString *LabelId;
| @property (nonatomic, copy) NSString *LabelName;
| @property (nonatomic, strong) NSArray *Panoramas;
| @end
|
| NS_ASSUME_NONNULL_END
| /**
| BackGroundColor
| :
| "rgba(87, 130, 217, 1)"
| FontColor
| :
| "rgba(255, 255, 255, 1)"
| LabelId
| :
| "4425d93d-a214-4c21-95de-f6dbfa54ede0"
| LabelName
| :
| "测试二组"
| Panoramas
| :
| */
|
|