No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UMONItem.h 509B

123456789101112131415
  1. @interface UMONItemBuilder : NSObject
  2. @property (strong, nonatomic) NSString *productId;
  3. @property (nonatomic) double quantity;
  4. @property (strong, nonatomic) NSString *type;
  5. @end
  6. @interface UMONItem : NSObject
  7. + (instancetype)build: (void (^)(UMONItemBuilder *))buildBlock;
  8. - (instancetype)initWithBuilder: (UMONItemBuilder *)builder;
  9. @property (nonatomic, strong, readonly) NSString *productId;
  10. @property (nonatomic, readonly) double quantity;
  11. @property (nonatomic, strong, readonly) NSString *type;
  12. @end