GiftQuantityModel.h 437 B

1234567891011121314151617181920
  1. //
  2. // GiftQuantityModel.h
  3. // BuguLive
  4. //
  5. // Created by 志刚杨 on 2022/4/12.
  6. // Copyright © 2022 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface GiftQuantityModel :NSObject
  11. @property (nonatomic , copy) NSString * id;
  12. @property (nonatomic , copy) NSString * num;
  13. @property (nonatomic , copy) NSString * title;
  14. @end
  15. NS_ASSUME_NONNULL_END