19 lines
323 B
Objective-C
Executable File
19 lines
323 B
Objective-C
Executable File
//
|
||
// BRResultModel.m
|
||
// BRPickerViewDemo
|
||
//
|
||
// Created by 任波 on 2019/10/2.
|
||
// Copyright © 2019年 91renb. All rights reserved.
|
||
//
|
||
// 最新代码下载地址:https://github.com/91renb/BRPickerView
|
||
|
||
#import "BRResultModel.h"
|
||
|
||
@implementation BRResultModel
|
||
|
||
- (NSString *)selectValue {
|
||
return _name;
|
||
}
|
||
|
||
@end
|