//
|
// PBIssueNavModel.m
|
// IphoneBIMe
|
//
|
// Created by zjf on 2018/8/8.
|
// Copyright © 2018年 ProBIM. All rights reserved.
|
//
|
|
#import "PBIssueNavModel.h"
|
|
@implementation PBIssueNavModel
|
- (id)copyWithZone:(nullable NSZone *)zone {
|
PBIssueNavModel *model = [[self class] allocWithZone:zone];
|
model.ItemDetailId = _ItemDetailId;
|
model.ItemName = _ItemName;
|
return model;
|
}
|
- (id)mutableCopyWithZone:(nullable NSZone *)zone {
|
PBIssueNavModel *model = [[self class] allocWithZone:zone];
|
model.ItemDetailId = _ItemDetailId;
|
model.ItemName = _ItemName;
|
return model;
|
}
|
@end
|