| 1234567891011121314151617181920 |
- //
- // GiftQuantityModel.h
- // BuguLive
- //
- // Created by 志刚杨 on 2022/4/12.
- // Copyright © 2022 xfg. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface GiftQuantityModel :NSObject
- @property (nonatomic , copy) NSString * id;
- @property (nonatomic , copy) NSString * num;
- @property (nonatomic , copy) NSString * title;
- @end
- NS_ASSUME_NONNULL_END
|