PBAccount.h 237 B

12345678910111213141516
  1. //
  2. // PBAccount.h
  3. // PBSDK
  4. //
  5. // Created by hello on 2025/3/8.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface PBAccount : NSObject
  10. @property (nonatomic, copy) NSNumber *balance;
  11. @end
  12. NS_ASSUME_NONNULL_END