#import <Foundation/Foundation>;

@interface ProfileOptionDTO : NSObject

//选项ID
@property (nonatomic, strong) NSInteger id;
//选项值
@property (nonatomic, assign) NSString value;


@end