PBEntryStringString.h 468 B

123456789101112131415161718192021222324
  1. //
  2. // PBEntryStringString.h
  3. // APProtocolBuffers
  4. //
  5. // Created by cuinacai on 16/6/2.
  6. // Copyright © 2016年 Alipay. All rights reserved.
  7. //
  8. #import "APDPBGeneratedMessage.h"
  9. @class PBEntryStringString;
  10. @interface PBEntryStringString : APDPBGeneratedMessage
  11. //hasKey
  12. @property (readonly) BOOL hasKey;
  13. //hasValue
  14. @property (readonly) BOOL hasValue;
  15. //key
  16. @property (nonatomic,strong) NSString* key ;
  17. //value
  18. @property (nonatomic,strong) NSString* value ;
  19. @end