ExternKVParam.h 416 B

12345678910111213141516
  1. //
  2. // ExternKVParam.h
  3. // APProtocolBuffers
  4. //
  5. // Created by cuinacai on 15/11/27.
  6. // Copyright © 2015年 Alipay. All rights reserved.
  7. //
  8. #import "APPBGeneratedMessage.h"
  9. @interface ExternKVParam : APPBGeneratedMessage<GeneratedMessageProtocol>
  10. @property (readonly) BOOL hasKey;
  11. @property (readonly) BOOL hasValue;
  12. @property (nonatomic,strong) NSString* key;
  13. @property (nonatomic,strong) NSString* value;
  14. @end