//
|
// PBTagModel.h
|
// IphoneBIMe
|
//
|
// Created by ZJF on 2020/3/11.
|
// Copyright © 2020 ProBIM. All rights reserved.
|
//
|
|
#import <Foundation/Foundation.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface PBTagModel : NSObject
|
@property (nonatomic, copy) NSString *it_guid;
|
@property (nonatomic, copy) NSString *it_name;
|
@property (nonatomic, copy) NSString *it_color;
|
@property (nonatomic, copy) NSString *it_organizeId;
|
@end
|
|
NS_ASSUME_NONNULL_END
|
/**
|
it_guid : "0b412982-8d9f-47ae-a72e-0f232503a469"
|
it_name : "12"
|
it_color : "rgba(86, 98, 112, 1)"
|
it_organizeId : "48617e7b-07f2-4748-9199-238af8f2bfc6"
|
*/
|